We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 694eb76 commit de8650cCopy full SHA for de8650c
1 file changed
Dockerfile
@@ -25,9 +25,11 @@ RUN apk add --no-cache \
25
26
ENV NODE_VERSION=20.14.0
27
28
-RUN curl -fsSL https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz \
+RUN curl -fsSL https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-musl-x64.tar.xz \
29
| tar -xJf - -C /usr/local --strip-components=1 --no-same-owner
30
31
+RUN node -v && npm -v
32
+
33
# Install and Configure Retype
34
RUN dotnet tool install retypeapp --tool-path /bin
35
ENV RETYPE_DEFAULT_HOST="0.0.0.0"
0 commit comments