mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
14 lines
295 B
Docker
14 lines
295 B
Docker
FROM golang:1.7.5
|
|
|
|
MAINTAINER Pilosa Corp. <dev@pilosa.com>
|
|
|
|
EXPOSE 15000
|
|
VOLUME /data
|
|
|
|
RUN echo 'data-dir = "/data"' > /config
|
|
|
|
COPY . /go/src/github.com/pilosa/pilosa
|
|
RUN CGO_ENABLED=0 go install -a github.com/pilosa/pilosa/cmd/pilosa
|
|
|
|
ENTRYPOINT ["/go/bin/pilosa"]
|
|
CMD ["-config", "/config"]
|