File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ RUN (cd /opt && \
66 curl -sSL https://storage.googleapis.com/dart-archive/channels/stable/release/latest/VERSION | jq -r .version \
77 )/sdk/dartsdk-linux-$DART_ARCH-release.zip" && \
88 unzip dart.zip && find /opt/dart-sdk -type d -exec chmod go+rx {} + && rm dart.zip) && \
9+ { curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg; } && \
10+ { 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; } && \
911 apt-get update && \
1012 apt-get install -y --no-install-recommends unzip libtinfo5 xz-utils libncurses5 \
11- gnucobol4 gnat gfortran tcl lua5.3 intercal php-cli gforth swi-prolog pike8.0 sbcl gnustep-devel && \
13+ gnucobol4 gnat gfortran tcl lua5.3 intercal php-cli gforth swi-prolog pike8.0 sbcl gnustep-devel nodejs && \
1214 rm -rf /var/lib/apt/lists/* && \
1315 mkdir /opt/swift && \
1416 if [ "$(arch)" = x86_64 ]; then \
You can’t perform that action at this time.
0 commit comments