ingress-nginx-helm/test/e2e-image/Dockerfile
k8s-infra-cherrypick-robot b60945a4ab
unskip the ocsp tests and update images to fix cfssl bug (#11615)
Signed-off-by: James Strong <strong.james.e@gmail.com>
Co-authored-by: James Strong <strong.james.e@gmail.com>
2024-07-16 01:24:46 -07:00

23 lines
500 B
Docker

ARG E2E_BASE_IMAGE
FROM ${E2E_BASE_IMAGE} AS BASE
FROM alpine:3.20.0
RUN apk update \
&& apk upgrade && apk add -U --no-cache \
ca-certificates \
bash \
tzdata \
libc6-compat \
openssl \
sqlite-dev
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" ]