Skip to content

Commit

Permalink
deps/2402: part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Feb 5, 2024
1 parent fc1bb7b commit 9a7e1e5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/admin-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands

FROM node:18-alpine AS pnpm
FROM node:20-alpine AS pnpm
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
RUN apk update
Expand Down
4 changes: 2 additions & 2 deletions apps/admin-web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands

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

# --------------------------------------------------------

FROM node:18-alpine AS runner
FROM node:20-alpine AS runner
WORKDIR /app

RUN apk add --no-cache --update \
Expand Down
2 changes: 1 addition & 1 deletion apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands

FROM node:18-alpine AS pnpm
FROM node:20-alpine AS pnpm
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
RUN apk update
Expand Down
2 changes: 1 addition & 1 deletion apps/reg-scraper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands

FROM node:18-alpine AS pnpm
FROM node:20-alpine AS pnpm
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
RUN apk update
Expand Down
4 changes: 2 additions & 2 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When copying this Dockerfile for use in other apps, don't forget to change the scope (api, web, etc.) in RUN commands

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

# --------------------------------------------------------

FROM node:18-alpine AS runner
FROM node:20-alpine AS runner
WORKDIR /app

RUN apk add --no-cache --update \
Expand Down

0 comments on commit 9a7e1e5

Please sign in to comment.