mirror of
https://git.suyu.dev/suyu/build-environments.git
synced 2026-01-02 04:34:56 +01:00
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,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue