Skip to content

Commit

Permalink
Install Node.js on tier3 runtime image
Browse files Browse the repository at this point in the history
  • Loading branch information
pxpeterxu authored and Xyene committed Jan 22, 2024
1 parent 7628975 commit b981e8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tier3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ RUN (cd /opt && \
curl -sSL https://storage.googleapis.com/dart-archive/channels/stable/release/latest/VERSION | jq -r .version \
)/sdk/dartsdk-linux-$DART_ARCH-release.zip" && \
unzip dart.zip && find /opt/dart-sdk -type d -exec chmod go+rx {} + && rm dart.zip) && \
{ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg; } && \
{ echo 'deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main' > /etc/apt/sources.list.d/nodesource.list; } && \
apt-get update && \
apt-get install -y --no-install-recommends unzip libtinfo5 xz-utils libncurses5 \
gnucobol4 gnat gfortran tcl lua5.3 intercal php-cli gforth swi-prolog pike8.0 sbcl gnustep-devel && \
gnucobol4 gnat gfortran tcl lua5.3 intercal php-cli gforth swi-prolog pike8.0 sbcl gnustep-devel nodejs && \
rm -rf /var/lib/apt/lists/* && \
mkdir /opt/swift && \
if [ "$(arch)" = x86_64 ]; then \
Expand Down

0 comments on commit b981e8b

Please sign in to comment.