clash/Dockerfile

19 lines
603 B
Docker
Raw Normal View History

2019-06-30 07:10:56 +00:00
FROM golang:alpine as builder
2018-10-22 20:44:11 +00:00
2019-06-30 07:10:56 +00:00
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 && \
2018-06-17 02:00:52 +00:00
tar zxvf /tmp/GeoLite2-Country.tar.gz -C /tmp && \
2018-10-22 20:44:11 +00:00
mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb
2018-10-01 11:38:54 +00:00
WORKDIR /clash-src
COPY . /clash-src
RUN go mod download && \
2019-06-30 07:10:56 +00:00
make linux-amd64 && \
mv ./bin/clash-linux-amd64 /clash
2018-06-17 00:18:39 +00:00
FROM alpine:latest
2018-10-22 20:44:11 +00:00
RUN apk add --no-cache ca-certificates
2018-06-17 00:18:39 +00:00
COPY --from=builder /Country.mmdb /root/.config/clash/
2018-10-22 20:44:11 +00:00
COPY --from=builder /clash /
2018-06-17 00:18:39 +00:00
ENTRYPOINT ["/clash"]