Clash.Meta/Dockerfile

28 lines
1.1 KiB
Docker
Raw Normal View History

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