25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

13 satır
384 B

  1. FROM golang:1.7-alpine
  2. LABEL maintainer="Remco Verhoef <remco@dutchcoders.io>"
  3. # Copy the local package files to the container's workspace.
  4. ADD . /go/src/github.com/dutchcoders/transfer.sh
  5. # build & install server
  6. RUN go build -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
  7. ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080", "--provider", "s3"]
  8. EXPOSE 8080 8080