Remove unnecessary dependencies in dockerfile
This commit is contained in:
parent
cad41e6c11
commit
cdea0a3eb8
@ -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"]
|
||||
|
@ -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"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user