about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Karl <akarl@darknebu.la>2019-10-10 22:17:33 +0200
committerAlexander Karl <akarl@darknebu.la>2019-10-10 22:17:33 +0200
commit41e9b0a90e7773dfa1d244ce873cfc28e05d3010 (patch)
treefe04ea8df80c872063371e953f339b15bb17195b
parent49dc42b80db73b743c84dadd8c9c4dd4f736fd7f (diff)
use debian:10-slim instead of alpine
-rw-r--r--Dockerfile4
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"