1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-03-19 07:04:14 +00:00
imgsrv/Dockerfile

9 lines
244 B
Text
Raw Normal View History

2017-02-06 12:25:03 -05:00
FROM fedora
RUN dnf install -y golang
RUN mkdir -p /usr/local/src/github.com/vbatts/
ENV GOPATH=/usr/local
ADD ./ /usr/local/src/github.com/vbatts/imgsrv/
RUN go install github.com/vbatts/imgsrv
EXPOSE 7777
ENTRYPOINT ["/usr/local/bin/imgsrv"]