-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feate: linux-musl target,docker image,add rc4-md5 cipher (#555)
* feate: linux-musl target,docker image 1. add rc4-md5 cipher * fix: ci * fix: Dockerfile * fix: add aarch64-unknown-linux-musl * fix: Build docker image for release only * fix: delete image-cleaning-action
- Loading branch information
Showing
5 changed files
with
119 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM alpine:latest | ||
# Define an ARG for the target architecture | ||
ARG TARGETARCH | ||
COPY ./clash-rs/clash-${TARGETARCH} /usr/bin/clash | ||
# The yq library installed here is used to rewrite the config.yaml configuration file for clash, merge it, and other related operations. | ||
RUN apk update && apk add --no-cache -f yq && mkdir -p /root/.config/clash/ | ||
WORKDIR /root | ||
ENTRYPOINT [ "/usr/bin/clash" ] | ||
CMD [ "-d", "/root/.config/clash/" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters