Skip to content
Open
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile
# preferred node version chosen here (22.1.0-alpine3.19 as of 05/04/2024)
FROM public.ecr.aws/docker/library/node:22.1.0-alpine3.19
FROM public.ecr.aws/docker/library/node:23.3.0-alpine3.19

# Install MariaDB and Bash so we can run data-migrations/process.sh
RUN apk update && \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.aws
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Stage 1: Dependencies
# preferred node version chosen here (22.1.0-alpine3.19 as of 05/04/2024)
FROM public.ecr.aws/docker/library/node:22.1.0-alpine3.19 as deps
FROM public.ecr.aws/docker/library/node:23.3.0-alpine3.19 as deps
WORKDIR /app

# Set production environment
Expand All @@ -17,7 +17,7 @@ RUN npm ci


#Stage 2: Builder
FROM public.ecr.aws/docker/library/node:22.1.0-alpine3.19 as builder
FROM public.ecr.aws/docker/library/node:23.3.0-alpine3.19 as builder
WORKDIR /app

# Set production environment
Expand All @@ -39,7 +39,7 @@ RUN rm -rf dist/__tests__ \
RUN ls -la dist/

# Stage 3: Runner
FROM public.ecr.aws/docker/library/node:22.1.0-alpine3.19 as runner
FROM public.ecr.aws/docker/library/node:23.3.0-alpine3.19 as runner
WORKDIR /app

RUN apk add --no-cache bash
Expand Down