1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-01-04 19:47:08 +00:00
imgsrv/Dockerfile

8 lines
244 B
Docker

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"]