1
0
Fork 0
mirror of https://github.com/vbatts/freezing-octo-hipster.git synced 2024-11-22 15:05:39 +00:00
random-utils/cmd/fsrv/Dockerfile

9 lines
188 B
Text
Raw Normal View History

FROM golang
WORKDIR /go/src/github.com/vbatts/utils/cmd/fsrv
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
RUN mkdir /data
EXPOSE 8888
CMD ["fsrv", "-root=/data", "-b=0.0.0.0" ]