We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13f1a5f commit bea564aCopy full SHA for bea564a
2 files changed
packages/amplify-container-hosting/resources/express-template/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM public.ecr.aws/bitnami/node:14-prod-debian-10
+FROM public.ecr.aws/docker/library/node:22-slim
2
3
WORKDIR /app
4
packages/amplify-container-hosting/resources/simple-template/Dockerfile
@@ -1,12 +1,12 @@
# Build the App using node
-FROM public.ecr.aws/bitnami/node:14-prod-debian-10 AS builder
+FROM public.ecr.aws/docker/library/node:22-slim AS builder
COPY . .
5
RUN yarn install && yarn build
6
7
# Host the App using nginx
8
EXPOSE 80
9
-FROM public.ecr.aws/nginx/nginx:1
+FROM public.ecr.aws/nginx/nginx:stable
10
WORKDIR /usr/share/nginx/html
11
RUN rm -rf ./*
12
COPY --from=builder /app/build .
0 commit comments