We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a7a8d commit 20dcfabCopy full SHA for 20dcfab
Dockerfile
@@ -5,10 +5,7 @@ RUN dnf update \
5
&& dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo \
6
&& dnf install -y wget which rsync nodejs20 jq awscli gh \
7
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 1 \
8
- && update-alternatives --list
9
-
10
-RUN which node || echo "no node"
11
-RUN which node20 || echo "no node20"
12
-RUN which nodejs20 || echo "no nodejs20"
13
14
-# RUN npm install --global aws-cdk \
+ && update-alternatives --install /usr/bin/node node /usr/bin/node-20 1 \
+ && update-alternatives --install /usr/bin/npm npm /usr/bin/npm-20 1 \
+ && update-alternatives --list \
+ && npm install --global aws-cdk
0 commit comments