21 lines
509 B
Docker
21 lines
509 B
Docker
FROM quay.io/kubernetes-ingress-controller/e2e:v05312020-d250b97b4 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/kubectl /usr/local/bin/
|
|
COPY --from=BASE /usr/local/bin/cfssl /usr/local/bin/
|
|
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
|
|
COPY --from=BASE /usr/local/bin/cfssljson /usr/local/bin/
|
|
|
|
COPY . /
|
|
|
|
CMD [ "/e2e.sh" ]
|