mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
16 lines
467 B
Docker
16 lines
467 B
Docker
FROM golang:alpine as builder
|
|
|
|
RUN apk add --no-cache make git && \
|
|
wget -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/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"]
|