aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 5b059dd..f7db7ba 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,13 +1,17 @@
FROM golang:1.17.0-alpine3.14 as builder
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
+
RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates
+
WORKDIR /opt
COPY . /opt/
-RUN ls /opt/
RUN go build .
+#-----------#
FROM scratch
+WORKDIR /
COPY --from=builder /opt/bagage /
+COPY --chown=1000:1000 --from=builder /mnt /s3_cache
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
USER 1000:1000
ENTRYPOINT ["/bagage"]