mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
19 lines
603 B
Docker
19 lines
603 B
Docker
FROM golang:alpine as builder
|
|
|
|
RUN apk add --no-cache make git && \
|
|
wget http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz -O /tmp/GeoLite2-Country.tar.gz && \
|
|
tar zxvf /tmp/GeoLite2-Country.tar.gz -C /tmp && \
|
|
mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb
|
|
WORKDIR /clash-src
|
|
COPY . /clash-src
|
|
RUN go mod download && \
|
|
make linux-amd64 && \
|
|
mv ./bin/clash-linux-amd64 /clash
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY --from=builder /Country.mmdb /root/.config/clash/
|
|
COPY --from=builder /clash /
|
|
ENTRYPOINT ["/clash"]
|