mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
Chore: rm unused Dockerfile
This commit is contained in:
parent
1a217e21e9
commit
7ddbc12cdb
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -14,6 +14,8 @@ jobs:
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up docker buildx
|
||||
id: buildx
|
||||
|
@ -1,20 +0,0 @@
|
||||
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 && \
|
||||
wget -O /qemu-arm-static https://github.com/multiarch/qemu-user-static/releases/latest/download/qemu-arm-static && \
|
||||
chmod +x /qemu-arm-static
|
||||
|
||||
WORKDIR /clash-src
|
||||
COPY . /clash-src
|
||||
RUN go mod download && \
|
||||
make linux-armv7 && \
|
||||
mv ./bin/clash-linux-armv7 /clash
|
||||
|
||||
FROM arm32v7/alpine:latest
|
||||
|
||||
COPY --from=builder /qemu-arm-static /usr/bin/
|
||||
COPY --from=builder /Country.mmdb /root/.config/clash/
|
||||
COPY --from=builder /clash /
|
||||
RUN apk add --no-cache ca-certificates
|
||||
ENTRYPOINT ["/clash"]
|
@ -1,20 +0,0 @@
|
||||
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 && \
|
||||
wget -O /qemu-aarch64-static https://github.com/multiarch/qemu-user-static/releases/latest/download/qemu-aarch64-static && \
|
||||
chmod +x /qemu-aarch64-static
|
||||
|
||||
WORKDIR /clash-src
|
||||
COPY . /clash-src
|
||||
RUN go mod download && \
|
||||
make linux-armv8 && \
|
||||
mv ./bin/clash-linux-armv8 /clash
|
||||
|
||||
FROM arm64v8/alpine:latest
|
||||
|
||||
COPY --from=builder /qemu-aarch64-static /usr/bin/
|
||||
COPY --from=builder /Country.mmdb /root/.config/clash/
|
||||
COPY --from=builder /clash /
|
||||
RUN apk add --no-cache ca-certificates
|
||||
ENTRYPOINT ["/clash"]
|
Loading…
Reference in New Issue
Block a user