Skip to content

Commit 465323f

Browse files
authored
Merge pull request #13 from planetlabs/certs
Include CA certificates
2 parents 8a40c2c + 4691326 commit 465323f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
FROM alpine:latest as certs
2+
RUN apk --update add ca-certificates
3+
14
FROM scratch
2-
ENTRYPOINT ["/stac"]
3-
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

Comments
 (0)