Skip to content

Commit e430cdb

Browse files
authored
Use images from public ECR (#97)
Use images from public ECR *Issue #, if available:* *Description of changes:* Use images from public ECR By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent d2480b9 commit e430cdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# # Stage 1: Install ADOT nodejs instrumentation in the /operator-build folder
2-
FROM node:20 AS build
2+
FROM public.ecr.aws/docker/library/node:20 AS build
33

44
# In the future, when ADOT JS is uploaded to NPM, the source code can be obtained from there
55
# and this Dockerfile will not need to copy the source code anymore as a workaround.
@@ -18,7 +18,7 @@ COPY docker-utils/package.json ./package.json
1818
RUN npm install
1919

2020
# Stage 2: Build the cp-utility binary
21-
FROM rust:1.75 as builder
21+
FROM public.ecr.aws/docker/library/rust:1.75 as builder
2222

2323
WORKDIR /usr/src/cp-utility
2424
COPY ./tools/cp-utility .

0 commit comments

Comments
 (0)