clash/Dockerfile

28 lines
1.1 KiB
Docker
Raw Normal View History

2023-01-25 12:53:39 +00:00
FROM alpine:latest as builder
2023-03-01 05:41:25 +00:00
ARG TARGETPLATFORM
RUN echo "I'm building for $TARGETPLATFORM"
2018-10-22 20:44:11 +00:00
2023-01-25 12:53:39 +00:00
RUN apk add --no-cache gzip && \
2023-11-03 13:01:45 +00:00
mkdir /mihomo-config && \
wget -O /mihomo-config/geoip.metadb https://fastly.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geoip.metadb && \
wget -O /mihomo-config/geosite.dat https://fastly.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geosite.dat && \
wget -O /mihomo-config/geoip.dat https://fastly.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geoip.dat
2022-04-28 06:11:35 +00:00
2023-11-03 13:01:45 +00:00
COPY docker/file-name.sh /mihomo/file-name.sh
WORKDIR /mihomo
2023-01-25 12:53:39 +00:00
COPY bin/ bin/
RUN FILE_NAME=`sh file-name.sh` && echo $FILE_NAME && \
2024-02-25 12:42:01 +00:00
FILE_NAME=`ls bin/ | egrep "$FILE_NAME.gz"|awk NR==1` && echo $FILE_NAME && \
2023-11-03 13:01:45 +00:00
mv bin/$FILE_NAME mihomo.gz && gzip -d mihomo.gz && echo "$FILE_NAME" > /mihomo-config/test
2018-06-17 00:18:39 +00:00
FROM alpine:latest
2023-11-03 13:01:45 +00:00
LABEL org.opencontainers.image.source="https://github.com/MetaCubeX/mihomo"
2018-10-22 20:44:11 +00:00
2022-09-18 15:19:25 +00:00
RUN apk add --no-cache ca-certificates tzdata iptables
2022-04-28 06:11:35 +00:00
2023-11-03 13:01:45 +00:00
VOLUME ["/root/.config/mihomo/"]
2022-04-28 06:11:35 +00:00
2023-11-03 13:01:45 +00:00
COPY --from=builder /mihomo-config/ /root/.config/mihomo/
COPY --from=builder /mihomo/mihomo /mihomo
RUN chmod +x /mihomo
ENTRYPOINT [ "/mihomo" ]