Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Node.js to v18.20.3 #879

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN dotnet restore "Dfe.PrepareConversions.Redirector/Dfe.PrepareConversions.Red
COPY . .

# Stage 2 - Build assets
FROM node:18.12-bullseye as frontend
FROM node:18.20-bullseye as frontend
COPY --from=build /src /src
WORKDIR /src/Dfe.PrepareConversions/wwwroot
RUN npm install
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1 - Restore and publish .NET layers
ARG ASPNET_IMAGE_TAG=8.0-bookworm-slim
ARG NODEJS_IMAGE_TAG=18.12-bullseye
ARG NODEJS_IMAGE_TAG=18.20-bullseye
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS publish
WORKDIR /build

Expand Down
Loading