Commit 51036b8a authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: replace deprecated Docker Hub registry FQDN

parent c5964b5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ The GNU Make template uses some global configuration used throughout all jobs.

| Input / Variable | Description                            | Default value     |
| --------------------- | -------------------------------------- | ----------------- |
| `image` / `MAKE_IMAGE` | The Docker image used to run GNU Make<br/>:warning: **set the image required by your project** (see next chapter)  | `registry.hub.docker.com/alpinelinux/build-base` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-MAKE_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-MAKE_IMAGE) |
| `image` / `MAKE_IMAGE` | The Docker image used to run GNU Make<br/>:warning: **set the image required by your project** (see next chapter)  | `docker.io/alpinelinux/build-base` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-MAKE_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-MAKE_IMAGE) |
| `project-dir` / `MAKE_PROJECT_DIR` | The root directory of the Makefile project. | `.` |

### Which image?
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
    {
      "name": "MAKE_IMAGE",
      "description": "The Docker image used to run GNU Make - **set the image required by your project** (see doc)",
      "default": "registry.hub.docker.com/alpinelinux/build-base"
      "default": "docker.io/alpinelinux/build-base"
    },
    {
      "name": "MAKE_BUILD_ARGS",
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ spec:
  inputs:
    image:
      description: The Docker image used to run GNU Make - **set the image required by your project** (see doc)
      default: registry.hub.docker.com/alpinelinux/build-base
      default: docker.io/alpinelinux/build-base
    build-args:
      description: Make [options](https://www.gnu.org/software/make/manual/html_node/Options-Summary.html) and [goals](https://www.gnu.org/software/make/manual/html_node/Goals.html) for the build & test job
      default: all test