From 0eff8516c0f2fce1ff1c497947c26a90646b8c24 Mon Sep 17 00:00:00 2001 From: Dreamacro <305009791@qq.com> Date: Sun, 30 Jun 2019 15:10:56 +0800 Subject: [PATCH] Chore: improve Dockerfile --- Dockerfile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index c36a4ffc..bd0d05c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,21 +1,18 @@ -FROM golang:latest as builder +FROM golang:alpine as builder -RUN wget http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz -O /tmp/GeoLite2-Country.tar.gz && \ +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 && \ tar zxvf /tmp/GeoLite2-Country.tar.gz -C /tmp && \ mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb - WORKDIR /clash-src - COPY . /clash-src - RUN go mod download && \ - GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o /clash + make linux-amd64 && \ + mv ./bin/clash-linux-amd64 /clash FROM alpine:latest RUN apk add --no-cache ca-certificates - COPY --from=builder /Country.mmdb /root/.config/clash/ COPY --from=builder /clash / - ENTRYPOINT ["/clash"]