This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/Dockerfile
2014-10-23 18:50:43 -08:00

7 lines
221 B
Docker

FROM golang:1.3.1
ADD . /go/src/github.com/thermokarst/bactdb
RUN go get -d -v github.com/thermokarst/bactdb/cmd/bactdb
RUN go install github.com/thermokarst/bactdb/cmd/bactdb
ENTRYPOINT /go/bin/bactdb serve
EXPOSE 8901