Update ReactOS to v0.4.14-104

This commit is contained in:
Héctor Molinero Fernández 2024-04-04 23:28:39 +02:00
parent 4bba179967
commit e11cb75fe7

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://downloads.sourceforge.net/reactos/ReactOS-0.4.14-release-98-gcb8061c-iso.zip
ARG REACTOS_ISO_CHECKSUM=6e556ba7f92e0be1b800a604aa1ab741ca0991d409c42bd35a7b166990dd1831
ARG REACTOS_ISO_URL=https://downloads.sourceforge.net/reactos/ReactOS-0.4.14-release-104-g5f5ed42-iso.zip
ARG REACTOS_ISO_CHECKSUM=6bb006fca64c12d2c34693ea6e3b072148e1d83d4970ec0938fadfbc3c877862
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 \