mirror of
https://github.com/vbatts/imgsrv.git
synced 2024-12-25 23:36:30 +00:00
8 lines
244 B
Docker
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"]
|