Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docker): switch to alpine3.19 #2842

Merged
merged 4 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
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 localenv/mock-account-servicing-entity/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18 AS base
FROM node:20-alpine3.19 AS base

WORKDIR /home/rafiki

Expand Down Expand Up @@ -42,7 +42,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
--frozen-lockfile
RUN pnpm --filter mock-account-servicing-entity build

FROM node:20-alpine3.18 AS runner
FROM node:20-alpine3.19 AS runner

WORKDIR /home/rafiki

Expand Down
2 changes: 1 addition & 1 deletion packages/auth/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18
FROM node:20-alpine3.19

WORKDIR /home/rafiki

Expand Down
4 changes: 2 additions & 2 deletions packages/auth/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18 AS base
FROM node:20-alpine3.19 AS base

WORKDIR /home/rafiki

Expand Down Expand Up @@ -43,7 +43,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
--frozen-lockfile
RUN pnpm --filter auth build

FROM node:20-alpine3.18 AS runner
FROM node:20-alpine3.19 AS runner

WORKDIR /home/rafiki

Expand Down
2 changes: 1 addition & 1 deletion packages/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18
FROM node:20-alpine3.19

WORKDIR /home/rafiki

Expand Down
4 changes: 2 additions & 2 deletions packages/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18 AS base
FROM node:20-alpine3.19 AS base

WORKDIR /home/rafiki

Expand Down Expand Up @@ -43,7 +43,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
--frozen-lockfile
RUN pnpm --filter backend build

FROM node:20-alpine3.18 AS runner
FROM node:20-alpine3.19 AS runner

WORKDIR /home/rafiki

Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18 AS base
FROM node:20-alpine3.19 AS base

WORKDIR /home/rafiki

Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.18 AS base
FROM node:20-alpine3.19 AS base

WORKDIR /home/rafiki

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
--frozen-lockfile
RUN pnpm --filter frontend build

FROM node:20-alpine3.18 AS runner
FROM node:20-alpine3.19 AS runner

WORKDIR /home/rafiki

Expand Down
Loading