We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a40c2c + 4691326 commit 465323fCopy full SHA for 465323f
Dockerfile
@@ -1,3 +1,7 @@
1
+FROM alpine:latest as certs
2
+RUN apk --update add ca-certificates
3
+
4
FROM scratch
-ENTRYPOINT ["/stac"]
-COPY stac /
5
+COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
6
+COPY stac /bin/stac
7
+ENTRYPOINT ["/bin/stac"]
0 commit comments