Install nodejs in containers for statements
All checks were successful
Suyu Docker Image CI / build (linux-clang-format) (push) Successful in 2m4s
Suyu Docker Image CI / build (linux-fresh) (push) Successful in 8m6s
Suyu Docker Image CI / build (linux-mingw) (push) Successful in 10m8s

This commit is contained in:
Fijxu 2024-03-22 19:29:32 -03:00
parent 56f2c86b69
commit 431cdf4738
Signed by: Fijxu
GPG key ID: 32C1DDF333EDA6A4
3 changed files with 9 additions and 4 deletions

View file

@ -1,11 +1,12 @@
FROM ubuntu:20.04 FROM ubuntu:20.04
LABEL maintainer="yuzu" LABEL maintainer="suyu"
# Create a user account yuzu (UID 1027) that the container will run as # Create a user account yuzu (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash yuzu && \ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
apt-get update && apt-get -y full-upgrade && \ apt-get update && apt-get -y full-upgrade && \
apt-get install -y git gpg-agent wget && \ apt-get install -y git gpg-agent wget && \
wget https://apt.llvm.org/llvm-snapshot.gpg.key && apt-key add ./llvm-snapshot.gpg.key && \ wget https://apt.llvm.org/llvm-snapshot.gpg.key && apt-key add ./llvm-snapshot.gpg.key && \
wget -qO- https://deb.nodesource.com/setup_20.x | bash - && \
echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" >> /etc/apt/sources.list && \ echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" >> /etc/apt/sources.list && \
apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y clang-format-15 && \ apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y clang-format-15 nodejs && \
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
USER 1027 USER 1027

View file

@ -1,5 +1,5 @@
FROM ubuntu:20.04 FROM ubuntu:20.04
LABEL maintainer="yuzu" LABEL maintainer="suyu"
ENV BOOST_VER=1_79_0 ENV BOOST_VER=1_79_0
ENV CLANG_VER=14 ENV CLANG_VER=14
@ -90,6 +90,9 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
ln -s $(which clang-${CLANG_VER}) /usr/bin/clang && \ ln -s $(which clang-${CLANG_VER}) /usr/bin/clang && \
ln -s $(which clang++-${CLANG_VER}) /usr/bin/clang++ && \ ln -s $(which clang++-${CLANG_VER}) /usr/bin/clang++ && \
dpkg-reconfigure ccache && \ dpkg-reconfigure ccache && \
# Install NodeJS
wget -qO- https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs && \
# Clean Container
apt-get clean autoclean && \ apt-get clean autoclean && \
apt-get autoremove --yes && \ apt-get autoremove --yes && \
rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log

View file

@ -1,5 +1,5 @@
FROM archlinux:latest FROM archlinux:latest
LABEL maintainer="yuzu" LABEL maintainer="suyu"
# Add mingw-repo "ownstuff" is a AUR with an up to date mingw64 # Add mingw-repo "ownstuff" is a AUR with an up to date mingw64
# Runs pacman -Syu twice in order to work around pacman issues where the first run only updates the # Runs pacman -Syu twice in order to work around pacman issues where the first run only updates the
@ -43,6 +43,7 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && mkdir -p /tmp/pkgs && \
mingw-w64-winpthreads \ mingw-w64-winpthreads \
mingw-w64-zlib \ mingw-w64-zlib \
mingw-w64-zstd \ mingw-w64-zstd \
nodejs-lts-iron \
&& \ && \
pacman -Scc --noconfirm && \ pacman -Scc --noconfirm && \
rm -rf /usr/share/man/ /tmp/* /var/tmp/ /usr/{i686-w64-mingw32,lib32} /usr/lib/gcc/i686-w64-mingw32 rm -rf /usr/share/man/ /tmp/* /var/tmp/ /usr/{i686-w64-mingw32,lib32} /usr/lib/gcc/i686-w64-mingw32