From cdea0a3eb8badc7c461ce7e50b4f08314343e8bf Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Tue, 8 Jan 2019 15:58:00 +0800 Subject: [PATCH] Remove unnecessary dependencies in dockerfile --- frontend/Dockerfile | 4 ++-- proxy/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index e1b79ed..f676f5f 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -5,9 +5,9 @@ LABEL Lan Tian "lantian@lantian.pub" ENV GOOS=linux GOARCH=${THIS_ARCH_GO} WORKDIR /root COPY . . -RUN apk -q --no-cache add git go build-base upx \ +RUN apk -q --no-cache add go build-base upx \ && cd /root && go build -o /frontend && upx /frontend \ && cd / && rm -rf /root/* \ - && apk del go build-base upx + && apk del --purge go build-base upx ENTRYPOINT ["/frontend"] diff --git a/proxy/Dockerfile b/proxy/Dockerfile index c2c463d..407bfb7 100644 --- a/proxy/Dockerfile +++ b/proxy/Dockerfile @@ -5,9 +5,9 @@ LABEL Lan Tian "lantian@lantian.pub" ENV GOOS=linux GOARCH=${THIS_ARCH_GO} WORKDIR /root COPY . . -RUN apk -q --no-cache add git go build-base upx \ +RUN apk -q --no-cache add go build-base upx \ && cd /root && go build -o /proxy && upx /proxy \ && cd / && rm -rf /root/* \ - && apk del go build-base upx + && apk del --purge go build-base upx ENTRYPOINT ["/proxy"]