Commit b28a7ae6 authored by Bertrand Goareguer's avatar Bertrand Goareguer Committed by Cédric OLIVIER
Browse files

fix: "Add registry name in all Docker images"

parent c5ad2603
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ variables:

# this job tests the Docker image on a remote Vault server (configurable)
test-on-remote:
  image: "curlimages/curl"
  image: "registry.hub.docker.com/curlimages/curl"
  services:
    - name: "$DOCKER_SNAPSHOT_IMAGE"
      alias: "vault-secrets-provider"
@@ -63,7 +63,7 @@ test-on-remote:
# this job tests the Docker image on a local Vault server using the Vault server image
# See: https://hub.docker.com/_/vault
test-on-local:
  image: "dwdraju/alpine-curl-jq"
  image: "registry.hub.docker.com/dwdraju/alpine-curl-jq"
  services:
    - name: "$DOCKER_SNAPSHOT_IMAGE"
      alias: "vault-secrets-provider"
+1 −1
Original line number Diff line number Diff line
FROM busybox:1.36.0 AS busybox
FROM registry.hub.docker.com/library/busybox:1.36.0 AS busybox

FROM scratch