1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-08-01 03:40:32 +00:00

*: vender code and make a Dockerfile

This commit is contained in:
Vincent Batts 2017-02-06 12:25:03 -05:00
parent ce7e87f290
commit c611d0d853
Signed by: vbatts
GPG key ID: 10937E57733F1362
107 changed files with 30522 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
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"]