Commit 2b6d4974 authored by Guilhem Bonnefille's avatar Guilhem Bonnefille Committed by Pierre Smeyers
Browse files

fix: switch to alpinelinux/build-base

The previous `alpine/make` was obsolete, not maintained.
This new image is heavier, but official and well maintained.
parent a30d9038
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ The GNU Make template uses some global configuration used throughout all jobs.

| Name                  | description                            | default value     |
| --------------------- | -------------------------------------- | ----------------- |
| `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/alpine/make` |
| `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` |

### Which image?

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,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/alpine/make"
      "default": "registry.hub.docker.com/alpinelinux/build-base"
    },
    {
      "name": "MAKE_BUILD_ARGS",
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ variables:
  TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"

  # Default Docker image (use a public image - can be overridden)
  MAKE_IMAGE: "registry.hub.docker.com/alpine/make"
  MAKE_IMAGE: "registry.hub.docker.com/alpinelinux/build-base"

  # Default arguments for 'build' command
  MAKE_BUILD_ARGS: "all test"