Skip to content
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
4 changes: 2 additions & 2 deletions dockerfiles/idp_deploy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# avoid having build-essential and the large-files token be in the
# main image.
#########################################################################
FROM ruby:3.3.4-slim as builder
FROM public.ecr.aws/docker/library/ruby:3.3.4-slim as builder

# Set environment variables
ENV RAILS_ROOT /app
Expand Down Expand Up @@ -140,7 +140,7 @@ RUN openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 1825 \
#########################################################################
# This is the main image.
#########################################################################
FROM ruby:3.3.4-slim as main
FROM public.ecr.aws/docker/library/ruby:3.3.4-slim as main

# Set environment variables
ENV RAILS_ROOT /app
Expand Down