Allow resolving certificates

https://github.com/aws/aws-sdk-go/issues/2322#issuecomment-443502850
This commit is contained in:
Richard van Laak 2019-10-22 11:09:40 +02:00 committed by GitHub
parent 57b56ea9f1
commit bda1d92db5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
FROM alpine:3.5 FROM alpine:3.5
MAINTAINER "EEA: IDM2 A-Team" <eea-edw-a-team-alerts@googlegroups.com> MAINTAINER "EEA: IDM2 A-Team" <eea-edw-a-team-alerts@googlegroups.com>
RUN apk add --no-cache --virtual .run-deps rsync openssh tzdata curl RUN apk add --no-cache --virtual .run-deps rsync openssh tzdata curl ca-certificates && rm -rf /var/cache/apk/*
COPY docker-entrypoint.sh / COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"] ENTRYPOINT ["/docker-entrypoint.sh"]