File tree Expand file tree Collapse file tree 20 files changed +43
-29
lines changed Expand file tree Collapse file tree 20 files changed +43
-29
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ IMPORT ./earthly/bash AS bash-ci
66IMPORT ./earthly/spectral AS spectral-ci
77IMPORT ./earthly/python AS python-ci
88
9+ ARG --global REGISTRY= "harbor.shared-services.projectcatalyst.io/dockerhub/library"
10+
911# cspell: words livedocs sitedocs
1012
1113
@@ -21,7 +23,7 @@ markdown-check-fix:
2123
2224# Make sure the project dictionary is properly sorted.
2325clean-spelling-list :
24- FROM debian:stable-slim
26+ FROM ${REGISTRY}/ debian:stable-slim
2527 DO cspell-ci+CLEAN
2628
2729# check-spelling Check spelling in this repo inside a container.
@@ -30,7 +32,7 @@ check-spelling:
3032
3133# check-bash - test all bash files lint properly according to shellcheck.
3234check-bash :
33- FROM alpine:3.20.3
35+ FROM ${REGISTRY}/ alpine:3.20.3
3436
3537 DO bash-ci+SHELLCHECK --src = .
3638
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ IMPORT ../../utilities/scripts AS scripts
44
55# Internal: builder creates a container we can use to execute shellcheck
66builder :
7- FROM alpine:3.20.3
7+ FROM harbor.shared-services.projectcatalyst.io/dockerhub/library/ alpine:3.20.3
88
99 RUN apk add --no-cache \
1010 bash \
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ VERSION 0.8
55IMPORT ../../utilities/cql-to-d2 AS cql-to-d2-utils
66
77scylladb-base :
8- FROM scylladb/scylla:6.1.1
8+ FROM harbor.shared-services.projectcatalyst.io/dockerhub/ scylladb/scylla:6.1.1
99
1010 WORKDIR /root
1111
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ VERSION 0.8
33# cspell: words cddlc
44
55cddl-base :
6- FROM ruby:3.3.0-alpine
6+ ARG REGISTRY= "harbor.shared-services.projectcatalyst.io/dockerhub/library"
7+ FROM ${REGISTRY}/ruby:3.3.0-alpine
78
89 RUN gem install cddlc
Original file line number Diff line number Diff line change 1111
1212 # Unlikely to need to change this.
1313 ARG cfg_file= cspell.json
14+ ARG REGISTRY= "harbor.shared-services.projectcatalyst.io/ghcr"
1415
15- FROM ghcr.io /streetsidesoftware/cspell:8.13.3
16+ FROM ${REGISTRY} /streetsidesoftware/cspell:8.13.3
1617 WORKDIR /work
1718
1819 COPY $src .
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ VERSION 0.8
33IMPORT ../debian AS debian
44
55# Define a constant name for the container and its version.
6- ARG --global CUE_IMAGE= "cuelang/cue:0.14.1"
6+ ARG --global CUE_IMAGE= "harbor.shared-services.projectcatalyst.io/dockerhub/ cuelang/cue:0.14.1"
77
88
99INSTALL :
Original file line number Diff line number Diff line change 11VERSION 0.8
22
33# Define a constant name for the container and its version.
4- ARG --global DEBIAN_IMAGE= "debian:13.0-slim"
4+ ARG --global DEBIAN_IMAGE= "harbor.shared-services.projectcatalyst.io/dockerhub/library/ debian:13.0-slim"
55
66# Optimally install packages for debian
77INSTALL :
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ PACKAGE:
114114 FUNCTION
115115
116116 # Use the official Nginx base image
117- FROM nginx:bookworm
117+ FROM harbor.shared-services.projectcatalyst.io/dockerhub/library/ nginx:bookworm
118118
119119 # Force this server to disable the browsers cache for these files.
120120 RUN echo " " > /etc/nginx/conf.d/disable-cache.conf; \
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ VERSION 0.8
44
55IMPORT ./installer AS installer
66
7+ ARG --global REGISTRY= "harbor.shared-services.projectcatalyst.io/dockerhub/library"
8+
79# TODO(bkioshn): https://github.com/input-output-hk/catalyst-ci/issues/322
810# Install flutter.
911INSTALL_FLUTTER :
@@ -37,7 +39,7 @@ INSTALL_FLUTTER:
3739
3840# flutter-base installs required tools and packages.
3941flutter-base :
40- FROM debian:bookworm-20250203-slim
42+ FROM ${REGISTRY}/ debian:bookworm-20250203-slim
4143
4244 ENV DEBIAN_FRONTEND= noninteractive
4345
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ IMPORT ../rust AS rust-ci
99# TODO(bkioshn): https://github.com/input-output-hk/catalyst-ci/issues/322
1010# builder: Setup necessary tools for `flutter_rust_bridge`
1111builder :
12- FROM debian:stable-slim
12+ FROM harbor.shared-services.projectcatalyst.io/dockerhub/library/ debian:stable-slim
1313
1414 WORKDIR /work
1515
You can’t perform that action at this time.
0 commit comments