mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
23 lines
859 B
Docker
23 lines
859 B
Docker
FROM --platform=${BUILDPLATFORM} golang:alpine as builder
|
|
|
|
RUN apk add --no-cache make git ca-certificates tzdata && \
|
|
wget -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb
|
|
WORKDIR /workdir
|
|
COPY --from=tonistiigi/xx:golang / /
|
|
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
|
|
|
|
FROM alpine:latest
|
|
LABEL org.opencontainers.image.source="https://github.com/Dreamacro/clash"
|
|
|
|
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /Country.mmdb /root/.config/clash/
|
|
COPY --from=builder /clash /
|
|
ENTRYPOINT ["/clash"]
|