We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9d1e7e + 95182f0 commit 338f926Copy full SHA for 338f926
docker/Dockerfile.linux.amd64
@@ -1,9 +1,13 @@
1
-FROM plugins/base:multiarch
+FROM alpine:3.15 as alpine
2
+RUN apk add -U --no-cache ca-certificates
3
+
4
+FROM scratch
5
6
LABEL maintainer="Drone.IO Community <[email protected]>" \
7
org.label-schema.name="Drone S3" \
8
org.label-schema.vendor="Drone.IO Community" \
9
org.label-schema.schema-version="1.0"
10
11
ADD release/linux/amd64/drone-s3 /bin/
12
+COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
13
ENTRYPOINT ["/bin/drone-s3"]
0 commit comments