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 && \
|
2019-12-31 12:30:42 +08:00
|
|
|
wget -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb
|
2018-10-01 19:38:54 +08:00
|
|
|
WORKDIR /clash-src
|
|
|
|
COPY . /clash-src
|
|
|
|
RUN go mod download && \
|
2019-06-30 15:10:56 +08:00
|
|
|
make linux-amd64 && \
|
|
|
|
mv ./bin/clash-linux-amd64 /clash
|
2018-06-17 08:18:39 +08:00
|
|
|
|
|
|
|
FROM alpine:latest
|
2018-10-23 04:44:11 +08:00
|
|
|
|
|
|
|
RUN apk add --no-cache ca-certificates
|
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"]
|