diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c2d9f69 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM golang:1.13 as build-env + +WORKDIR /go/src/app +ADD . /go/src/app + +RUN go get -d -v ./... + +RUN go build -o /go/bin/static + +FROM alpine:stable +COPY --from=build-env /go/bin/static / + +ENV port=8080 +ENV directory="/mount" +ENV subpath="079521df-c66e-4c1e-86ce-daf0075cc73f" + +CMD /static -port ${port} -dir ${dir} -subpath ${subpath} \ No newline at end of file |