diff --git a/VERSION b/VERSION index b6160487..844f6a91 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.2 +0.6.3 diff --git a/docker/Dockerfile b/docker/Dockerfile index 9af4781e..e39e44ba 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -81,11 +81,18 @@ RUN if [ $RELEASE = true ]; then VERSION=$(cat VERSION) hack/xbuild.sh; fi # release to GitHub RUN if [ $RELEASE = true ]; then hack/github_release.sh alexei-led pumba; fi +# get latest CA certificates +FROM alpine:3.9 as certs +RUN apk --update add ca-certificates + # # ------ Pumba runtime image ------ # FROM scratch +# copy CA certificates +COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt + # this is the last commabd since it's never cached COPY --from=build-and-test /go/src/github.com/alexei-led/pumba/.bin/pumba /pumba