FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20200902-gf3d80b2c2@sha256:ff2936f75777c436f81181b5da717ea8f82e64ddd0634296ec864389d2e30dca AS BASE FROM alpine:3.12 RUN apk add -U --no-cache \ ca-certificates \ bash \ curl \ tzdata \ libc6-compat \ openssl COPY --from=BASE /go/bin/ginkgo /usr/local/bin/ COPY --from=BASE /usr/local/bin/helm /usr/local/bin/ COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/ COPY --from=BASE /usr/bin/cfssl /usr/local/bin/ COPY --from=BASE /usr/bin/cfssljson /usr/local/bin/ COPY . / CMD [ "/e2e.sh" ]