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

chore(deps): update node.js to v22 #1635

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions webclient/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://docs.docker.com/build/attestations/sbom/#scan-build-context
ARG BUILDKIT_SBOM_SCAN_CONTEXT=true

FROM node:21-alpine3.19 AS build-stage
FROM node:22-alpine3.19 AS build-stage
CommanderStorm marked this conversation as resolved.
Show resolved Hide resolved
WORKDIR /app
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
Expand All @@ -26,7 +26,7 @@ COPY app app
RUN pnpm run build


FROM node:21-alpine3.19 AS production-stage
FROM node:22-alpine3.19 AS production-stage
CommanderStorm marked this conversation as resolved.
Show resolved Hide resolved
RUN apk update --no-progress --quiet && \
apk add --no-cache --no-progress --quiet curl

Expand Down
Loading