aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2020-05-20 15:32:19 +1000
committerGitHub <noreply@github.com>2020-05-20 15:32:19 +1000
commit94f44a4fe822cb3c799fb34b880a9e462b5c9ed0 (patch)
tree5d259b3cf88567fd308b9ccd87a8a83f73bb0edd
parent5a5412c5d12d535b41084a7e1971922af156ae7c (diff)
parent525120de61ec27c8d64207a703061c9400f77c07 (diff)
downloadhomer-94f44a4fe822cb3c799fb34b880a9e462b5c9ed0.tar.gz
homer-94f44a4fe822cb3c799fb34b880a9e462b5c9ed0.tar.zst
homer-94f44a4fe822cb3c799fb34b880a9e462b5c9ed0.zip
Merge branch 'master' into fix-docker-multiarch-builds
-rw-r--r--Dockerfile.arm32v71
-rw-r--r--Dockerfile.arm64v81
2 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7
index 12322d4..d78d608 100644
--- a/Dockerfile.arm32v7
+++ b/Dockerfile.arm32v7
@@ -5,6 +5,7 @@ ARG QEMU_VERSION "v4.2.0-7"
5RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-arm-static && chmod +x qemu-arm-static 5RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-arm-static && chmod +x qemu-arm-static
6 6
7FROM arm32v7/alpine:3.11 7FROM arm32v7/alpine:3.11
8COPY --from=builder qemu-aarch64-static /usr/bin
8 9
9COPY --from=qemu qemu-arm-static /usr/bin/ 10COPY --from=qemu qemu-arm-static /usr/bin/
10COPY ./ /www/ 11COPY ./ /www/
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8
index 490a109..b7c0484 100644
--- a/Dockerfile.arm64v8
+++ b/Dockerfile.arm64v8
@@ -5,6 +5,7 @@ ARG QEMU_VERSION "v4.2.0-7"
5RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-aarch64-static && chmod +x qemu-aarch64-static 5RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-aarch64-static && chmod +x qemu-aarch64-static
6 6
7FROM arm64v8/alpine:3.11 7FROM arm64v8/alpine:3.11
8COPY qemu-arm-static /usr/bin
8 9
9COPY --from=qemu qemu-aarch64-static /usr/bin/ 10COPY --from=qemu qemu-aarch64-static /usr/bin/
10COPY ./ /www/ 11COPY ./ /www/