Updated ReactOS to v0.4.14-RC-123

This commit is contained in:
Héctor Molinero Fernández 2021-11-21 12:36:34 +01:00
parent fc8f7730ea
commit 78d19ebe17

View File

@ -65,8 +65,8 @@ RUN curl -Lo /tmp/busybox.exe "${BUSYBOX_EXE_URL:?}"
RUN printf '%s' "${BUSYBOX_EXE_CHECKSUM:?} /tmp/busybox.exe" | sha256sum -c

# Download and install ReactOS
ARG REACTOS_ISO_URL=https://sourceforge.net/projects/reactos/files/ReactOS/0.4.14/ReactOS-0.4.14-RC-122-ge7cfa90-iso.zip
ARG REACTOS_ISO_CHECKSUM=ea0eede37146f994cd56289681b21a859a5565393ae813d092c255c21ac73c74
ARG REACTOS_ISO_URL=https://sourceforge.net/projects/reactos/files/ReactOS/0.4.14/ReactOS-0.4.14-RC-123-g75e9ac7-iso.zip
ARG REACTOS_ISO_CHECKSUM=8a3e3c768c2a310fee04b9a806a2e5960a04378172d256f92ab3e330fb1affa9
RUN curl -Lo /tmp/reactos.zip "${REACTOS_ISO_URL:?}"
RUN printf '%s' "${REACTOS_ISO_CHECKSUM:?} /tmp/reactos.zip" | sha256sum -c
RUN 7z e /tmp/reactos.zip -so '*.iso' > /tmp/reactos.iso \