Skip to content
Closed
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Builder stage
FROM node:22.22.2 AS builder
FROM node:26.5.1 AS builder

WORKDIR /app

Expand All @@ -11,7 +11,7 @@

# Install dependencies
RUN rm -rf node_modules
RUN yarn install --frozen-lockfile --network-timeout 600000

Check warning on line 14 in Dockerfile

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Lifecycle scripts are enabled by default in Yarn v2+.

See more on https://sonarcloud.io/project/issues?id=credebl_afj-controller&issues=AZ_Ftahhz_mHrm2Qioll&open=AZ_Ftahhz_mHrm2Qioll&pullRequest=430

RUN yarn global add patch-package

Expand All @@ -19,7 +19,7 @@
RUN yarn build

# Stage 2: Production stage
FROM node:22.22.2-slim
FROM node:26.5.1-slim

# Update system packages and install security updates
RUN apt-get update && apt-get upgrade -y && \
Expand Down
Loading