Skip to content

Commit

Permalink
feat(docker): switch to alpine3.19 (#2842)
Browse files Browse the repository at this point in the history
* feat(auth): build with alpine3.19

* feat(backend): build with alpine3.19

* feat(frontend): build with alpine3.19

* bump(localenv): docker image to alpine 3.19
  • Loading branch information
golobitch authored Aug 6, 2024
1 parent b0d282b commit 8338dfc
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
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

0 comments on commit 8338dfc

Please sign in to comment.