2018-06-17 08:18:39 +08:00
|
|
|
FROM golang:latest as builder
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2018-06-17 08:18:39 +08:00
|
|
|
RUN wget http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz -O /tmp/GeoLite2-Country.tar.gz && \
|
2018-06-17 10:00:52 +08:00
|
|
|
tar zxvf /tmp/GeoLite2-Country.tar.gz -C /tmp && \
|
2018-10-23 04:44:11 +08:00
|
|
|
mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb
|
|
|
|
|
2018-10-01 19:38:54 +08:00
|
|
|
WORKDIR /clash-src
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2018-10-01 19:38:54 +08:00
|
|
|
COPY . /clash-src
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2018-10-01 19:38:54 +08:00
|
|
|
RUN go mod download && \
|
2018-10-23 04:44:11 +08:00
|
|
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o /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
|
|
|
EXPOSE 7890 7891
|
2018-10-23 04:44:11 +08:00
|
|
|
|
2018-06-17 08:18:39 +08:00
|
|
|
ENTRYPOINT ["/clash"]
|