mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-04 11:03:58 +00:00
e083d1c57d
This reverts commit ce4902e5e6
.
18 lines
576 B
Docker
18 lines
576 B
Docker
FROM golang:alpine as builder
|
|
|
|
RUN apk add --no-cache make git && \
|
|
wget -O /Country.mmdb https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb
|
|
WORKDIR /clash-src
|
|
COPY --from=tonistiigi/xx:golang / /
|
|
COPY . /clash-src
|
|
RUN go mod download && \
|
|
make docker && \
|
|
mv ./bin/clash-docker /clash
|
|
|
|
FROM alpine:latest
|
|
LABEL org.opencontainers.image.source="https://github.com/Dreamacro/clash"
|
|
|
|
RUN apk add --no-cache ca-certificates tzdata
|
|
COPY --from=builder /Country.mmdb /root/.config/clash/
|
|
COPY --from=builder /clash /
|
|
ENTRYPOINT ["/clash"]
|