mirror of https://github.com/SystemRage/py-kms.git
Corrected missing arch specs
This commit is contained in:
parent
c04382d200
commit
9d2d5e0b06
|
@ -3,7 +3,7 @@ FROM alpine AS builder
|
|||
RUN apk add curl && curl -L "https://github.com/balena-io/qemu/releases/download/v4.0.0%2Bbalena2/qemu-4.0.0.balena2-arm.tar.gz" | tar zxvf - -C . --strip-components 1
|
||||
|
||||
# Switch to the target image
|
||||
FROM alpine:3.12
|
||||
FROM arm32v7/alpine:3.12
|
||||
|
||||
# Import qemu from the preparation
|
||||
COPY --from=builder qemu-arm-static /usr/bin
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM alpine AS builder
|
|||
RUN apk add curl && curl -L "https://github.com/balena-io/qemu/releases/download/v4.0.0%2Bbalena2/qemu-4.0.0.balena2-aarch64.tar.gz" | tar zxvf - -C . --strip-components 1
|
||||
|
||||
# Switch to the target image
|
||||
FROM alpine:3.12
|
||||
FROM arm64v8/alpine:3.12
|
||||
|
||||
# Import qemu from the preparation
|
||||
COPY --from=builder qemu-aarch64-static /usr/bin
|
||||
|
|
Loading…
Reference in New Issue