Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continuous update on 2024-01-18 #321

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ ENV LINUX_GPG_KEYS \
AC2B29BD34A6AFDDB3F68F35E7BFC8EC95861109

# updated via "update.sh"
ENV LINUX_VERSION 6.1.58
ENV LINUX_VERSION 6.1.73

RUN wget -O /linux.tar.xz "https://cdn.kernel.org/pub/linux/kernel/v${LINUX_VERSION%%.*}.x/linux-${LINUX_VERSION}.tar.xz"; \
wget -O /linux.tar.asc "https://cdn.kernel.org/pub/linux/kernel/v${LINUX_VERSION%%.*}.x/linux-${LINUX_VERSION}.tar.sign"; \
Expand Down Expand Up @@ -347,9 +347,9 @@ RUN make -C /usr/src/linux INSTALL_HDR_PATH=/usr/local headers_install

# https://download.virtualbox.org/virtualbox/
# updated via "update.sh"
ENV VBOX_VERSION 7.0.12
ENV VBOX_VERSION 7.0.14
# https://www.virtualbox.org/download/hashes/$VBOX_VERSION/SHA256SUMS
ENV VBOX_SHA256 b37f6aabe5a32e8b96ccca01f37fb49f4fd06674f1b29bc8fe0f423ead37b917
ENV VBOX_SHA256 0efbcb9bf4722cb19292ae00eba29587432e918d3b1f70905deb70f7cf78e8ce
# (VBoxGuestAdditions_X.Y.Z.iso SHA256, for verification)

RUN wget -O /vbox.iso "https://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso"; \
Expand Down Expand Up @@ -380,7 +380,7 @@ RUN tcl-tce-load open-vm-tools; \

# https://www.parallels.com/products/desktop/download/
# updated via "update.sh"
ENV PARALLELS_VERSION 19.0.0-54570
ENV PARALLELS_VERSION 19.2.1-54832

RUN wget -O /parallels.tgz "https://download.parallels.com/desktop/v${PARALLELS_VERSION%%.*}/$PARALLELS_VERSION/ParallelsTools-$PARALLELS_VERSION-boot2docker.tar.gz"; \
mkdir /usr/src/parallels; \
Expand All @@ -398,7 +398,7 @@ RUN cp -vr /usr/src/parallels/tools/* ./; \

# https://github.com/xenserver/xe-guest-utilities/tags
# updated via "update.sh"
ENV XEN_VERSION 8.3.1
ENV XEN_VERSION 8.4.0

RUN wget -O /xen.tgz "https://github.com/xenserver/xe-guest-utilities/archive/v$XEN_VERSION.tar.gz"; \
mkdir /usr/src/xen; \
Expand Down Expand Up @@ -453,7 +453,7 @@ RUN wget -O usr/local/sbin/cgroupfs-mount "https://github.com/tianon/cgroupfs-mo

# https://download.docker.com/linux/static/stable/x86_64/
# updated via "update.sh"
ENV DOCKER_VERSION 24.0.6
ENV DOCKER_VERSION 24.0.7

# Get the Docker binaries with version that matches our boot2docker version.
RUN DOCKER_CHANNEL='stable'; \
Expand Down
Loading