Skip to content

Commit

Permalink
build: Synchronize versions between platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Nov 12, 2024
1 parent d7fcf9a commit 69f760c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ARG VERSION_ARG="4.00"

FROM scratch AS build-amd64
COPY --from=qemux/qemu-docker:6.06 / /

Expand Down Expand Up @@ -29,10 +31,10 @@ COPY --chmod=755 ./assets /run/assets
ADD --chmod=755 https://raw.githubusercontent.com/christgau/wsdd/v0.8/src/wsdd.py /usr/sbin/wsdd
ADD --chmod=664 https://github.com/qemus/virtiso-whql/releases/download/v1.9.43-0/virtio-win-1.9.43.tar.xz /drivers.txz

FROM dockurr/windows-arm:2.22 AS build-arm64
FROM dockurr/windows-arm:${VERSION_ARG} AS build-arm64
FROM build-${TARGETARCH}

ARG VERSION_ARG="0.0"
ARG VERSION_ARG="4.00"
RUN echo "$VERSION_ARG" > /run/version

EXPOSE 8006 3389
Expand Down

0 comments on commit 69f760c

Please sign in to comment.