ingress-nginx-helm/test/e2e-image/Dockerfile

24 lines
498 B
Docker
Raw Normal View History

ARG E2E_BASE_IMAGE
FROM ${E2E_BASE_IMAGE} AS BASE
2019-02-26 15:32:53 +00:00
FROM alpine:3.21
RUN apk update \
&& apk upgrade && apk add -U --no-cache \
ca-certificates \
bash \
tzdata \
libc6-compat \
openssl \
sqlite-dev
2019-02-26 15:32:53 +00:00
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
2020-05-31 03:25:56 +00:00
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
2020-09-02 17:03:27 +00:00
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" ]