1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-11-23 16:45:39 +00:00
imgsrv/Dockerfile
Vincent Batts e3593e4992
Dockerfile: introduce environment variables
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-03-10 15:41:17 -05:00

11 lines
420 B
Docker

FROM fedora
ENV GOPATH /usr/local
EXPOSE 7777
RUN dnf install -y golang git bzr && \
go get github.com/vbatts/imgsrv && \
rm -rf /usr/local/src /usr/local/pkg && \
dnf remove -y golang git bzr
ENV MONGO_DB filesrv
ENV MONGO_HOST 127.0.0.1
ENV MONGO_PORT 27017
ENTRYPOINT /usr/local/bin/imgsrv -server -mongo-host=$MONGO_HOST:$MONGO_PORT -mongo-db=$MONGO_DB -mongo-username=$MONGO_USER -mongo-password=$MONGO_PASSWORD