Fix e2e test in osx

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-02-26 12:32:53 -03:00
parent ec632817ad
commit 51c6e950a3
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
4 changed files with 20 additions and 63 deletions

View file

@ -1,17 +1,22 @@
FROM quay.io/kubernetes-ingress-controller/e2e:v02252019-286c1f306 AS BASE
FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1
RUN clean-install \
ca-certificates \
bash \
curl \
tzdata
COPY ginkgo /usr/local/bin/
COPY kubectl /usr/local/bin/
COPY e2e.sh /e2e.sh
RUN curl -Lo /usr/local/bin/kubectl \
https://storage.googleapis.com/kubernetes-release/release/v1.13.3/bin/linux/amd64/kubectl \
&& chmod +x /usr/local/bin/kubectl
COPY manifests /manifests
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
COPY wait-for-nginx.sh /
COPY e2e.test /
COPY e2e.sh /e2e.sh
COPY manifests /manifests
COPY wait-for-nginx.sh /
COPY e2e.test /
CMD [ "/e2e.sh" ]