From 5650f7e213814fa6b5e78353d089fd3aac24f7d5 Mon Sep 17 00:00:00 2001 From: Bertrand Goareguer <bertrand.goareguer@gmail.com> Date: Fri, 27 Jan 2023 10:37:24 +0000 Subject: [PATCH] fix: "Add registry name in all Docker images" --- README.md | 2 +- kicker.json | 2 +- templates/gitlab-ci-python.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 372786a..f2d886a 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The Python template uses some global configuration used throughout all jobs. | Name | description | default value | | -------------------- | ------------------------------------------------------------------------------------- | ------------------ | -| `PYTHON_IMAGE` | The Docker image used to run Python <br/>:warning: **set the version required by your project** | `python:3` | +| `PYTHON_IMAGE` | The Docker image used to run Python <br/>:warning: **set the version required by your project** | `registry.hub.docker.com/library/python:3` | | `PYTHON_PROJECT_DIR` | Python project root directory | `.` | | `PYTHON_BUILD_SYSTEM`| Python build-system to use to install dependencies, build and package the project (see below) | _none_ (auto-detect) | | `PIP_INDEX_URL` | Python repository url | _none_ | diff --git a/kicker.json b/kicker.json index d483b6e..60821c8 100644 --- a/kicker.json +++ b/kicker.json @@ -7,7 +7,7 @@ { "name": "PYTHON_IMAGE", "description": "The Docker image used to run Python - **set the version required by your project**", - "default": "python:3" + "default": "registry.hub.docker.com/library/python:3" }, { "name": "PYTHON_PROJECT_DIR", diff --git a/templates/gitlab-ci-python.yml b/templates/gitlab-ci-python.yml index 59f80b8..5080bb7 100644 --- a/templates/gitlab-ci-python.yml +++ b/templates/gitlab-ci-python.yml @@ -52,7 +52,7 @@ variables: POETRY_VIRTUALENVS_IN_PROJECT: "false" PIPENV_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pipenv" - PYTHON_IMAGE: python:3 + PYTHON_IMAGE: "registry.hub.docker.com/library/python:3" # Default Python project root directory PYTHON_PROJECT_DIR: . @@ -73,7 +73,7 @@ variables: SAFETY_ARGS: "--full-report" # Trivy tool - PYTHON_TRIVY_IMAGE: aquasec/trivy:latest + PYTHON_TRIVY_IMAGE: "registry.hub.docker.com/aquasec/trivy:latest" PYTHON_TRIVY_ARGS: "--vuln-type library" PYTHON_SBOM_OPTS: "--catalogers python-index-cataloger" -- GitLab