Skip to content

Commit 0fd4e4a

Browse files
committed
docker build fix
1 parent a5418c0 commit 0fd4e4a

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
node-version-file: .nvmrc
2727
cache: npm
2828

29-
- name: Upgrade npm to v11
30-
run: npm i -g npm@11
31-
3229
- name: Install dependencies
3330
run: npm ci
3431

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
node-version-file: .nvmrc
2727
cache: npm
2828

29-
- name: Upgrade npm to v11
30-
run: npm i -g npm@11
31-
3229
- name: Install dependencies
3330
run: npm ci
3431

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.21.1
1+
22.22.2

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
FROM node:22.22-alpine AS base
1+
FROM node:22.22.2-alpine AS base
22

33
# Ensure base image is up to date
44
RUN apk upgrade --no-cache && \
55
apk add --no-cache libc6-compat
66

77
FROM base AS builder
88

9-
RUN npm i -g npm@11
10-
119
WORKDIR /app
1210

1311
# Install dependencies

0 commit comments

Comments
 (0)