Skip to content

Commit 97aca62

Browse files
authored
use AWS images in dockerfile (#1576)
1 parent 6056a3d commit 97aca62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24-alpine AS web
1+
FROM public.ecr.aws/docker/library/node:24-alpine AS web
22

33
WORKDIR /app
44
COPY web/package.json web/pnpm-lock.yaml web/.npmrc ./
@@ -8,7 +8,7 @@ COPY web/ .
88
RUN pnpm run generate-translation-types
99
RUN pnpm build
1010

11-
FROM rust:1 AS chef
11+
FROM public.ecr.aws/docker/library/rust:1 AS chef
1212

1313
WORKDIR /build
1414

@@ -43,7 +43,7 @@ COPY migrations migrations
4343
RUN cargo install --locked --bin defguard --path ./crates/defguard --root /build
4444

4545
# run
46-
FROM debian:13-slim
46+
FROM public.ecr.aws/docker/library/debian:13-slim
4747
RUN apt-get update -y && \
4848
apt-get install --no-install-recommends -y ca-certificates libssl-dev && \
4949
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)