We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de8650c commit d5764f8Copy full SHA for d5764f8
1 file changed
Dockerfile
@@ -12,7 +12,7 @@ COPY ./server/. .
12
RUN go build -o docktainer
13
14
# Stage 2: Final container with Retype, Git and the Webserver
15
-FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine-amd64
+FROM mcr.microsoft.com/dotnet/sdk:9.0
16
17
# Install required tools
18
RUN apk add --no-cache \
@@ -25,7 +25,7 @@ RUN apk add --no-cache \
25
26
ENV NODE_VERSION=20.14.0
27
28
-RUN curl -fsSL https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-musl-x64.tar.xz \
+RUN curl -fsSL https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz \
29
| tar -xJf - -C /usr/local --strip-components=1 --no-same-owner
30
31
RUN node -v && npm -v
0 commit comments