Install NodeJS and update XTchain
Some checks failed
OSCW Runner Container Build / OSCW-Runner-Container (push) Failing after 15s

This commit is contained in:
Aiken Harris 2025-07-10 18:54:04 +02:00 committed by CodingWorkshop Signing Team
parent 3721a46688
commit ec9bb2bcf3
Signed by: CodingWorkshop Signing Team
GPG Key ID: 6DC88369C82795D2

View File

@ -5,7 +5,7 @@ MAINTAINER CodingWorkshop <constitutive@codingworkshop.eu.org>
RUN pacman -Syu --noconfirm --noprogressbar --quiet
# Install additional packages
RUN pacman -Syu --noconfirm --noprogressbar --quiet autoconf automake bison clang cmake cppcheck docker flex git hugo libedit libmd linux-headers lld make mingw-w64-binutils mingw-w64-gcc mtools ninja openssh parted patch pkgconfig rsync texinfo wget which
RUN pacman -Syu --noconfirm --noprogressbar --quiet autoconf automake bison clang cmake cppcheck docker flex git hugo libedit libmd linux-headers lld make mingw-w64-binutils mingw-w64-gcc mtools ninja nodejs openssh parted patch pkgconfig rsync texinfo wget which
# Set locale
RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && \
@ -29,7 +29,7 @@ VOLUME /var/lib/docker
EXPOSE 2375
# Install XT toolchain
RUN wget https://github.com/xt-sys/xtchain/releases/download/2.8.8/xtchain-2.8.8-linux.tar.zst -O xtchain.tar.zst && \
RUN wget https://github.com/xt-sys/xtchain/releases/download/3.0.0/xtchain-3.0.0-linux.tar.zst -O xtchain.tar.zst && \
mkdir -p /opt/xtchain && \
tar xapf xtchain.tar.zst -C /opt/xtchain && \
rm xtchain.tar.zst