add route

This commit is contained in:
jeff
2018-06-03 19:36:01 +08:00
parent 40a0be0836
commit a64153b1c7
18 changed files with 1091 additions and 4 deletions

View File

@@ -1,5 +1,10 @@
FROM alpine:3.6
RUN apk add --update ca-certificates && update-ca-certificates
COPY ./* /usr/local/bin/
RUN apk add --update ca-certificates \
&& update-ca-certificates \
&& mkdir -p /etc/kubesphere/ingress-controller
COPY ./bin/* /usr/local/bin/
COPY ./ingress-controller /etc/kubesphere/ingress-controller
CMD ["sh"]