Fix e2e test in osx
This commit is contained in:
parent
ec632817ad
commit
51c6e950a3
4 changed files with 20 additions and 63 deletions
|
|
@ -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" ]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue