clash/Dockerfile

19 lines
576 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 -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb
2018-10-01 11:38:54 +00:00
WORKDIR /clash-src
COPY --from=tonistiigi/xx:golang / /
2018-10-01 11:38:54 +00:00
COPY . /clash-src
RUN go mod download && \
make docker && \
mv ./bin/clash-docker /clash
2018-06-17 00:18:39 +00:00
FROM alpine:latest
LABEL org.opencontainers.image.source="https://github.com/Dreamacro/clash"
2018-10-22 20:44:11 +00:00
RUN apk add --no-cache ca-certificates tzdata
COPY --from=builder /Country.mmdb /root/.config/clash/
COPY --from=builder /clash /
ENTRYPOINT ["/clash"]