8000 fix node installation in Dockerfile (#11808) · localstack/localstack@97161f2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 97161f2

Browse files
alexrashedzaingz
authored andcommitted
fix node installation in Dockerfile (#11808)
1 parent dc36d9b commit 97161f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
3838
C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C \
3939
108F52B48DB57BB0CC439B2997B01419BD92F80A \
4040
A363A499291CBBC940DD62E41F10027AF002F8B0 \
41+
CC68F5A3106FF448322E48ED27F5E38D5B0A215F \
4142
; do \
4243
gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || \
4344
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; \
4445
done \
45-
&& curl -O https://nodejs.org/dist/latest-v18.x/SHASUMS256.txt \
46+
&& curl -LO https://nodejs.org/dist/latest-v18.x/SHASUMS256.txt \
4647
&& LATEST_VERSION_FILENAME=$(cat SHASUMS256.txt | grep -o "node-v.*-linux-$ARCH" | sort | uniq) \
4748
&& rm SHASUMS256.txt \
4849
&& curl -fsSLO --compressed "https://nodejs.org/dist/latest-v18.x/$LATEST_VERSION_FILENAME.tar.xz" \

0 commit comments

Comments
 (0)
0