We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6056a3d commit 97aca62Copy full SHA for 97aca62
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:24-alpine AS web
+FROM public.ecr.aws/docker/library/node:24-alpine AS web
2
3
WORKDIR /app
4
COPY web/package.json web/pnpm-lock.yaml web/.npmrc ./
@@ -8,7 +8,7 @@ COPY web/ .
8
RUN pnpm run generate-translation-types
9
RUN pnpm build
10
11
-FROM rust:1 AS chef
+FROM public.ecr.aws/docker/library/rust:1 AS chef
12
13
WORKDIR /build
14
@@ -43,7 +43,7 @@ COPY migrations migrations
43
RUN cargo install --locked --bin defguard --path ./crates/defguard --root /build
44
45
# run
46
-FROM debian:13-slim
+FROM public.ecr.aws/docker/library/debian:13-slim
47
RUN apt-get update -y && \
48
apt-get install --no-install-recommends -y ca-certificates libssl-dev && \
49
rm -rf /var/lib/apt/lists/*
0 commit comments