diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index a0a216c..c1ce8a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ RUN go get -d -v ./... RUN go build -o /go/bin/static -FROM alpine:latest -COPY --from=build-env /go/bin/static / +FROM debian:10-slim +COPY --from=build-env /go/bin/static /static ENV port=8080 ENV directory="/mount" |