2019-06-30 15:10:56 +08:00
|
|
|
FROM golang:alpine as builder
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2019-06-30 15:10:56 +08:00
|
|
|
RUN apk add --no-cache make git && \
|
2022-04-28 14:11:35 +08:00
|
|
|
mkdir /clash-config && \
|
|
|
|
wget -O /clash-config/Country.mmdb https://raw.githubusercontent.com/Loyalsoldier/geoip/release/Country.mmdb && \
|
|
|
|
wget -O /clash-config/geosite.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat && \
|
|
|
|
wget -O /clash-config/geoip.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat
|
|
|
|
|
2022-05-02 00:59:41 +08:00
|
|
|
|
2018-10-01 19:38:54 +08:00
|
|
|
COPY . /clash-src
|
2022-05-02 00:59:41 +08:00
|
|
|
WORKDIR /clash-src
|
|
|
|
RUN go mod download &&\
|
|
|
|
make docker &&\
|
|
|
|
mv ./bin/Clash.Meta-docker /clash
|
|
|
|
|
2018-06-17 08:18:39 +08:00
|
|
|
FROM alpine:latest
|
2022-04-28 14:11:35 +08:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/MetaCubeX/Clash.Meta"
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2022-03-15 11:30:52 +08:00
|
|
|
RUN apk add --no-cache ca-certificates tzdata
|
2022-04-28 14:11:35 +08:00
|
|
|
|
|
|
|
VOLUME ["/root/.config/clash/"]
|
|
|
|
|
|
|
|
COPY --from=builder /clash-config/ /root/.config/clash/
|
2022-05-02 00:59:41 +08:00
|
|
|
COPY --from=builder /clash /clash
|
|
|
|
RUN chmod +x /clash
|
2022-04-28 14:11:35 +08:00
|
|
|
ENTRYPOINT [ "/clash" ]
|