14 lines
366 B
Docker
14 lines
366 B
Docker
ARG THIS_ARCH_ALT=amd64
|
|
FROM multiarch/alpine:${THIS_ARCH_ALT}-edge
|
|
|
|
LABEL Lan Tian "lantian@lantian.pub"
|
|
ENV GOOS=linux GOARCH=${THIS_ARCH_GO}
|
|
WORKDIR /root
|
|
COPY . .
|
|
RUN apk -q --no-cache add go build-base upx \
|
|
&& cd /root && go build -o /frontend && upx /frontend \
|
|
&& cd / && rm -rf /root/* \
|
|
&& apk del --purge go build-base upx
|
|
|
|
ENTRYPOINT ["/frontend"]
|