Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): Avoid Docker Hub pull throttling by using public ECR registry #4292

Merged
merged 1 commit into from
Jul 8, 2024
Merged
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
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ ARG CI_COMMIT_SHA=dev
ARG NODE_VERSION=16
ARG PYTHON_VERSION=3.11

FROM node:${NODE_VERSION}-bookworm as node
FROM node:${NODE_VERSION}-bookworm-slim as node-slim
FROM python:${PYTHON_VERSION}-bookworm as python
FROM python:${PYTHON_VERSION}-slim-bookworm as python-slim
FROM public.ecr.aws/docker/library/node:${NODE_VERSION}-bookworm as node
FROM public.ecr.aws/docker/library/node:${NODE_VERSION}-bookworm-slim as node-slim
FROM public.ecr.aws/docker/library/python:${PYTHON_VERSION}-bookworm as python
FROM public.ecr.aws/docker/library/python:${PYTHON_VERSION}-slim-bookworm as python-slim

# - Intermediary stages
# * build-node
Expand Down
Loading