1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-01-12 15:17:07 +00:00
imgsrv/Dockerfile
Vincent Batts 4b75c60819
Dockerfile: builds an image from master
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-03-10 14:08:38 -05:00

8 lines
233 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
ENTRYPOINT ["/usr/local/bin/imgsrv"]