mirror of
https://github.com/bastienwirtz/homer.git
synced 2026-07-18 17:05:18 +00:00
Fix arg syntax
This commit is contained in:
parent
cf2df79869
commit
514b68eae3
2 changed files with 2 additions and 4 deletions
|
|
@ -1,11 +1,10 @@
|
|||
FROM alpine as qemu
|
||||
|
||||
ARG QEMU_VERSION "v4.2.0-7"
|
||||
ARG QEMU_VERSION="v4.2.0-7"
|
||||
|
||||
RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-arm-static && chmod +x qemu-arm-static
|
||||
|
||||
FROM arm32v7/alpine:3.11
|
||||
COPY --from=builder qemu-aarch64-static /usr/bin
|
||||
|
||||
COPY --from=qemu qemu-arm-static /usr/bin/
|
||||
COPY ./ /www/
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
FROM alpine as qemu
|
||||
|
||||
ARG QEMU_VERSION "v4.2.0-7"
|
||||
ARG QEMU_VERSION="v4.2.0-7"
|
||||
|
||||
RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-aarch64-static && chmod +x qemu-aarch64-static
|
||||
|
||||
FROM arm64v8/alpine:3.11
|
||||
COPY qemu-arm-static /usr/bin
|
||||
|
||||
COPY --from=qemu qemu-aarch64-static /usr/bin/
|
||||
COPY ./ /www/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue