Skip to content

Commit d5764f8

Browse files
committed
Yet more container fixes......
1 parent de8650c commit d5764f8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY ./server/. .
1212
RUN go build -o docktainer
1313

1414
# Stage 2: Final container with Retype, Git and the Webserver
15-
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine-amd64
15+
FROM mcr.microsoft.com/dotnet/sdk:9.0
1616

1717
# Install required tools
1818
RUN apk add --no-cache \
@@ -25,7 +25,7 @@ RUN apk add --no-cache \
2525

2626
ENV NODE_VERSION=20.14.0
2727

28-
RUN curl -fsSL https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-musl-x64.tar.xz \
28+
RUN curl -fsSL https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz \
2929
| tar -xJf - -C /usr/local --strip-components=1 --no-same-owner
3030

3131
RUN node -v && npm -v

0 commit comments

Comments
 (0)