2022-09-21 21:09:11 +08:00
|
|
|
FROM --platform=${BUILDPLATFORM} golang:alpine as builder
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2022-09-21 21:09:11 +08:00
|
|
|
RUN apk add --no-cache make git ca-certificates tzdata && \
|
2019-12-31 12:30:42 +08:00
|
|
|
wget -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb
|
2022-09-21 21:09:11 +08:00
|
|
|
WORKDIR /workdir
|
2020-06-21 12:38:14 +08:00
|
|
|
COPY --from=tonistiigi/xx:golang / /
|
2022-09-21 21:09:11 +08:00
|
|
|
ARG TARGETOS TARGETARCH TARGETVARIANT
|
|
|
|
|
|
|
|
RUN --mount=target=. \
|
|
|
|
--mount=type=cache,target=/root/.cache/go-build \
|
|
|
|
--mount=type=cache,target=/go/pkg/mod \
|
|
|
|
make BINDIR= ${TARGETOS}-${TARGETARCH}${TARGETVARIANT} && \
|
|
|
|
mv /clash* /clash
|
2018-06-17 08:18:39 +08:00
|
|
|
|
|
|
|
FROM alpine:latest
|
2021-01-20 16:08:24 +08:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/Dreamacro/clash"
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2022-09-21 21:09:11 +08:00
|
|
|
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
2018-06-17 08:18:39 +08:00
|
|
|
COPY --from=builder /Country.mmdb /root/.config/clash/
|
2018-10-23 04:44:11 +08:00
|
|
|
COPY --from=builder /clash /
|
2018-06-17 08:18:39 +08:00
|
|
|
ENTRYPOINT ["/clash"]
|