Skip to content

Commit

Permalink
Update Node.js to v22.1.0 (#1248)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored May 3, 2024
1 parent 0f67433 commit 044f561
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.19.1

COPY --from=node:22.0.0-alpine / /
COPY --from=node:22.1.0-alpine / /
COPY --from=rust:1.77.2-alpine / /

ENV PATH="/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Expand Down
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN \
rm pkg/package.json.bak


FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as yarn
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as yarn
ENV FORCE_COLOR true

WORKDIR /workdir
Expand All @@ -55,7 +55,7 @@ RUN \
yarn workspaces focus -A --production


FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as test-backend
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as test-backend
ENV FORCE_COLOR true
ENV DOMAIN example.com
ENV SUBDOMAIN subdomain
Expand Down Expand Up @@ -108,7 +108,7 @@ RUN \
mv packages/backend/coverage /coverage/backend


FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as test-commons
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as test-commons
ENV FORCE_COLOR true

WORKDIR /workdir
Expand All @@ -132,7 +132,7 @@ RUN \
mv packages/commons/coverage /coverage/commons


FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as test-frontend
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as test-frontend
ENV FORCE_COLOR true

WORKDIR /workdir
Expand All @@ -158,7 +158,7 @@ RUN \
mv packages/frontend/coverage /coverage/frontend


FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as build-backend
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as build-backend
ENV NODE_ENV production
ENV FORCE_COLOR true

Expand Down Expand Up @@ -196,7 +196,7 @@ RUN \
.yarn/unplugged/swagger-ui-dist-*/node_modules/swagger-ui-dist/swagger-ui-standalone-preset.js \
/app/public/api-docs/

FROM --platform=$BUILDPLATFORM node:22.0.0-alpine as build-frontend
FROM --platform=$BUILDPLATFORM node:22.1.0-alpine as build-frontend
ENV NODE_ENV production
ENV FORCE_COLOR true

Expand Down Expand Up @@ -249,7 +249,7 @@ ENTRYPOINT [ "codacy-coverage" ]


# required for Renovate to update the base image:
FROM node:22.0.0-alpine as node
FROM node:22.1.0-alpine as node

FROM alpine:3.19.1 as deploy-base
ARG TARGETARCH
Expand Down

0 comments on commit 044f561

Please sign in to comment.