clash/Dockerfile

18 lines
658 B
Docker
Raw Normal View History

2018-06-17 00:18:39 +00:00
FROM golang:latest as builder
RUN 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 && \
cp /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 && \
2018-06-17 00:18:39 +00:00
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o /clash && \
chmod +x /clash
FROM alpine:latest
RUN apk --no-cache add ca-certificates && \
mkdir -p /root/.config/clash
COPY --from=builder /Country.mmdb /root/.config/clash/
COPY --from=builder /clash .
2018-06-17 00:18:39 +00:00
EXPOSE 7890 7891
ENTRYPOINT ["/clash"]