Install nodejs in containers for statements
This commit is contained in:
parent
56f2c86b69
commit
431cdf4738
3 changed files with 9 additions and 4 deletions
|
@ -1,11 +1,12 @@
|
|||
FROM ubuntu:20.04
|
||||
LABEL maintainer="yuzu"
|
||||
LABEL maintainer="suyu"
|
||||
# Create a user account yuzu (UID 1027) that the container will run as
|
||||
RUN useradd -m -u 1027 -s /bin/bash yuzu && \
|
||||
apt-get update && apt-get -y full-upgrade && \
|
||||
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 -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 && \
|
||||
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
|
||||
USER 1027
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
FROM ubuntu:20.04
|
||||
LABEL maintainer="yuzu"
|
||||
LABEL maintainer="suyu"
|
||||
|
||||
ENV BOOST_VER=1_79_0
|
||||
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++ && \
|
||||
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 autoremove --yes && \
|
||||
rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
FROM archlinux:latest
|
||||
LABEL maintainer="yuzu"
|
||||
LABEL maintainer="suyu"
|
||||
|
||||
# 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
|
||||
|
@ -43,6 +43,7 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && mkdir -p /tmp/pkgs && \
|
|||
mingw-w64-winpthreads \
|
||||
mingw-w64-zlib \
|
||||
mingw-w64-zstd \
|
||||
nodejs-lts-iron \
|
||||
&& \
|
||||
pacman -Scc --noconfirm && \
|
||||
rm -rf /usr/share/man/ /tmp/* /var/tmp/ /usr/{i686-w64-mingw32,lib32} /usr/lib/gcc/i686-w64-mingw32
|
||||
|
|
Loading…
Reference in a new issue