Skip to content

Commit 9a7e1e5

Browse files
committed
deps/2402: part 2
1 parent fc1bb7b commit 9a7e1e5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

apps/admin-api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands
22

3-
FROM node:18-alpine AS pnpm
3+
FROM node:20-alpine AS pnpm
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
66
RUN apk update

apps/admin-web/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands
22

3-
FROM node:18-alpine AS pnpm
3+
FROM node:20-alpine AS pnpm
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
66
RUN apk update
@@ -42,7 +42,7 @@ RUN pnpm turbo run build --filter=admin-web...
4242

4343
# --------------------------------------------------------
4444

45-
FROM node:18-alpine AS runner
45+
FROM node:20-alpine AS runner
4646
WORKDIR /app
4747

4848
RUN apk add --no-cache --update \

apps/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands
22

3-
FROM node:18-alpine AS pnpm
3+
FROM node:20-alpine AS pnpm
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
66
RUN apk update

apps/reg-scraper/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands
22

3-
FROM node:18-alpine AS pnpm
3+
FROM node:20-alpine AS pnpm
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
66
RUN apk update

apps/web/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands
22

3-
FROM node:18-alpine AS pnpm
3+
FROM node:20-alpine AS pnpm
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
66
RUN apk update
@@ -42,7 +42,7 @@ RUN pnpm turbo run build --filter=web...
4242

4343
# --------------------------------------------------------
4444

45-
FROM node:18-alpine AS runner
45+
FROM node:20-alpine AS runner
4646
WORKDIR /app
4747

4848
RUN apk add --no-cache --update \

0 commit comments

Comments
 (0)