From aa207ec66411248bea9d872443b4751459e48cce Mon Sep 17 00:00:00 2001 From: Dreamacro <305009791@qq.com> Date: Thu, 30 Jan 2020 21:19:51 +0800 Subject: [PATCH] Fix: qemu permission --- Dockerfile.arm32v7 | 3 ++- Dockerfile.arm64v8 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7 index 2d43fa4..e2f2d29 100644 --- a/Dockerfile.arm32v7 +++ b/Dockerfile.arm32v7 @@ -2,7 +2,8 @@ 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 + 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 diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 index 0debda0..b532e41 100644 --- a/Dockerfile.arm64v8 +++ b/Dockerfile.arm64v8 @@ -2,7 +2,8 @@ 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 + 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