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
Matthew Dillon 16e742fcd7 Fig.
2015-01-05 16:28:03 -09:00

7 lines
235 B
Docker

FROM golang:1.4.0
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
CMD /go/bin/bactdb serve --keys=/bactdb/keys/
EXPOSE 8901