Install nodejs in containers for statements

This commit is contained in:
Fijxu 2024-03-22 19:29:32 -03:00
parent 56f2c86b69
commit 431cdf4738
No known key found for this signature in database
GPG key ID: 32C1DDF333EDA6A4
3 changed files with 9 additions and 4 deletions

View file

@ -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