Skip to content

Commit 2943ac2

Browse files
authored
Merge pull request #792 from pendo324/use-ecr-public-images
use ECR public images
2 parents a3e4023 + d733b31 commit 2943ac2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tools/docker/Dockerfile.integ-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:experimental
22
# Test image that starts up containerd and the devmapper snapshotter. The default CMD will drop to a bash shell. Overrides
33
# to CMD will be provided appended to /bin/bash -c
4-
FROM golang:1.21-bullseye
4+
FROM public.ecr.aws/docker/library/golang:1.21-bullseye
55
ENV PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/go/bin"
66
ENV INSTALLROOT="/usr/local"
77
ENV DEBIAN_FRONTEND="noninteractive"

tools/docker/Dockerfile.proto-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM golang:1.21-bullseye
14+
FROM public.ecr.aws/docker/library/golang:1.21-bullseye
1515

1616
RUN apt-get update && apt-get install --yes --no-install-recommends \
1717
libprotobuf-dev=3.12.4-1+deb11u1 \

tools/docker/Dockerfile.runc-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM golang:1.21-bullseye
14+
FROM public.ecr.aws/docker/library/golang:1.21-bullseye
1515

1616
RUN apt-get update && \
1717
DEBIAN_FRONTEND=noninteractive apt-get -y install libseccomp-dev pkg-config

tools/docker/Dockerfile.stargz-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM golang:1.21-bullseye
14+
FROM public.ecr.aws/docker/library/golang:1.21-bullseye

tools/image-builder/Dockerfile.debian-image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM debian:bullseye-slim
14+
FROM public.ecr.aws/docker/library/debian:bullseye-slim
1515

1616
RUN apt-get update && \
1717
DEBIAN_FRONTEND=noninteractive apt-get -y install \

0 commit comments

Comments
 (0)