Chore: improve Dockerfile
This commit is contained in:
parent
34338e7107
commit
0eff8516c0
1 changed files with 5 additions and 8 deletions
13
Dockerfile
13
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 && \
|
tar zxvf /tmp/GeoLite2-Country.tar.gz -C /tmp && \
|
||||||
mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb
|
mv /tmp/GeoLite2-Country_*/GeoLite2-Country.mmdb /Country.mmdb
|
||||||
|
|
||||||
WORKDIR /clash-src
|
WORKDIR /clash-src
|
||||||
|
|
||||||
COPY . /clash-src
|
COPY . /clash-src
|
||||||
|
|
||||||
RUN go mod download && \
|
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
|
FROM alpine:latest
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates
|
RUN apk add --no-cache ca-certificates
|
||||||
|
|
||||||
COPY --from=builder /Country.mmdb /root/.config/clash/
|
COPY --from=builder /Country.mmdb /root/.config/clash/
|
||||||
COPY --from=builder /clash /
|
COPY --from=builder /clash /
|
||||||
|
|
||||||
ENTRYPOINT ["/clash"]
|
ENTRYPOINT ["/clash"]
|
||||||
|
|
Loading…
Reference in a new issue