Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile.integ-test
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:experimental
# Test image that starts up containerd and the devmapper snapshotter. The default CMD will drop to a bash shell. Overrides
# to CMD will be provided appended to /bin/bash -c
FROM golang:1.21-bullseye
FROM public.ecr.aws/docker/library/golang:1.21-bullseye
ENV PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/go/bin"
ENV INSTALLROOT="/usr/local"
ENV DEBIAN_FRONTEND="noninteractive"
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile.proto-builder
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

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

RUN apt-get update && apt-get install --yes --no-install-recommends \
libprotobuf-dev=3.12.4-1+deb11u1 \
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile.runc-builder
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

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

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install libseccomp-dev pkg-config
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile.stargz-builder
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

FROM golang:1.21-bullseye
FROM public.ecr.aws/docker/library/golang:1.21-bullseye
2 changes: 1 addition & 1 deletion tools/image-builder/Dockerfile.debian-image
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

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

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install \
Expand Down