Remove unnecessary dependencies in dockerfile

This commit is contained in:
Lan Tian 2019-01-08 15:58:00 +08:00
parent cad41e6c11
commit cdea0a3eb8
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
2 changed files with 4 additions and 4 deletions

View File

@ -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"]

View File

@ -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"]