File tree Expand file tree Collapse file tree 4 files changed +6
-3452
lines changed
internal/generate/kubernetes Expand file tree Collapse file tree 4 files changed +6
-3452
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,6 @@ RUN pip install awscli
4747RUN chmod +x /usr/local/bin/* && \
4848 upx --lzma /usr/local/bin/*
4949
50-
51- RUN mkdir -p /home/certs/curl
52- COPY /certs/curl/cacert.pem /home/certs/curl/
53-
5450WORKDIR tmp/commit0
5551COPY . .
5652
@@ -61,16 +57,15 @@ RUN make build-deps && make build && \
6157FROM alpine:3.10
6258ENV \
6359 PROTOBUF_VERSION=3.6.1-r1 \
64- GOPATH=/proto-libs \
65- CURL_CA_BUNDLE=/home/certs/curl/cacert.pem \
66- SSL_CERT_DIR=/home/certs/curl \
67- SSL_CERT_FILE=cacert.pem
60+ GOPATH=/proto-libs
61+
62+ RUN apk add --update bash ca-certificates git python && \
63+ apk add --update -t deps make py-pip
6864
6965RUN mkdir ${GOPATH}
7066COPY --from=builder /usr/local/bin /usr/local/bin
7167COPY --from=builder /usr/local/include /usr/local/include
7268COPY --from=builder /go/src/github.com/grpc-ecosystem/grpc-gateway ${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway
73- COPY --from=builder /home/certs/curl /home/certs/curl
7469WORKDIR /project
7570RUN apk add --update --no-cache make protobuf=${PROTOBUF_VERSION} && \
7671 rm -rf /var/cache/apk/*
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments