transfer.sh/Dockerfile
2017-03-22 22:28:05 +01:00

12 lines
369 B
Docker

FROM golang:1.7
MAINTAINER Remco Verhoef <remco@dutchcoders.io>
# Copy the local package files to the container's workspace.
ADD . /go/src/github.com/dutchcoders/transfer.sh
# build & install server
RUN go build -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080", "--provider", "s3"]
EXPOSE 8080 8080