Verified Commit 3833109e authored by anarcat's avatar anarcat 💥
Browse files

use our own container image for wiki-replica CI

This will reduce the impact on Docker hub rate limiting and improve
our supply chain, among many other things.
parent c699772e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
# regular user, so we can't install it either)
find-files:
  stage: build
  image: debian:stable-slim
  image: containers.torproject.org/tpo/tpa/base-images/debian:stable
  script:
    - apt update && apt install -yy --no-install-recommends git ca-certificates
    - export LATEST_COMMIT_SHA="${CI_MERGE_REQUEST_SOURCE_BRANCH_SHA:-${CI_COMMIT_SHA}}"
@@ -36,7 +36,7 @@ find-files:
# it doesn't run on merge requests to leave those poor people alone
fail-on-desync-wiki:
  stage: build
  image: debian:stable-slim
  image: containers.torproject.org/tpo/tpa/base-images/debian:stable
  script:
    - apt update && apt install -yy --no-install-recommends git ca-certificates
    - git fetch wiki || git remote add -f wiki https://gitlab.torproject.org/tpo/tpa/team.wiki.git
@@ -92,7 +92,7 @@ mdlintall:

codespell:
  image:
    name: debian:stable
    name: containers.torproject.org/tpo/tpa/base-images/debian:stable
  needs:
    - job: find-files
      artifacts: true
@@ -109,7 +109,7 @@ codespell:

codespellall:
  image:
    name: debian:stable
    name: containers.torproject.org/tpo/tpa/base-images/debian:stable
  needs:
    - job: find-files
      artifacts: true