mirror of
https://git.suyu.dev/suyu/build-environments.git
synced 2025-12-21 21:35:58 +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,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue