@@ -119,7 +119,7 @@ test-cxx-driver:
119
119
# Create the VERSION_CURRENT file using Git. This file is exported as an artifact at /
120
120
version-current :
121
121
# Run on Alpine, which does this work the fastest
122
- FROM artifactory.corp.mongodb.com/dockerhub/library/ alpine:3.18
122
+ FROM alpine:3.18
123
123
# Install Python and Git, the only things required for this job:
124
124
RUN apk add git python3
125
125
# Copy only the .git/ directory and calc_release_version, which are enough to get the VERSION_CURRENT
@@ -174,7 +174,7 @@ multibuild:
174
174
# release-archive :
175
175
# Create a release archive of the source tree. (Refer to dev docs)
176
176
release-archive :
177
- FROM artifactory.corp.mongodb.com/dockerhub/library/ alpine:3.20
177
+ FROM alpine:3.20
178
178
RUN apk add git bash
179
179
ARG --required prefix
180
180
ARG --required ref
@@ -219,7 +219,7 @@ release-archive:
219
219
220
220
# Obtain the signing public key. Exported as an artifact /c-driver.pub
221
221
signing-pubkey :
222
- FROM artifactory.corp.mongodb.com/dockerhub/library/ alpine:3.20
222
+ FROM alpine:3.20
223
223
RUN apk add curl
224
224
RUN curl --location --silent --fail "https://pgp.mongodb.com/c-driver.pub" -o /c-driver.pub
225
225
SAVE ARTIFACT /c-driver.pub
@@ -249,7 +249,7 @@ sign-file:
249
249
# Generate a signed release artifact. Refer to the "Earthly" page of our dev docs for more information.
250
250
# (Refer to dev docs)
251
251
signed-release :
252
- FROM artifactory.corp.mongodb.com/dockerhub/library/ alpine:3.20
252
+ FROM alpine:3.20
253
253
RUN apk add git
254
254
# The version of the release. This affects the filepaths of the output and is the default for --ref
255
255
ARG --required version
@@ -338,7 +338,7 @@ sbom-validate:
338
338
--exclude jira
339
339
340
340
snyk :
341
- FROM --platform=linux/amd64 artifactory.corp.mongodb.com/dockerhub/library/ ubuntu:24.04
341
+ FROM --platform=linux/amd64 ubuntu:24.04
342
342
RUN apt-get update && apt-get -y install curl
343
343
RUN curl --location https://github.com/snyk/cli/releases/download/v1.1291.1/snyk-linux -o /usr/local/bin/snyk
344
344
RUN chmod a+x /usr/local/bin/snyk
@@ -410,7 +410,7 @@ test-vcpkg-manifest-mode:
410
410
make test-manifest-mode
411
411
412
412
vcpkg-base :
413
- FROM artifactory.corp.mongodb.com/dockerhub/library/ alpine:3.18
413
+ FROM alpine:3.18
414
414
RUN apk add cmake curl gcc g++ musl-dev ninja-is-really-ninja zip unzip tar \
415
415
build-base git pkgconf perl bash linux-headers
416
416
ENV VCPKG_ROOT= /opt/vcpkg-git
@@ -469,7 +469,7 @@ env.alpine3.19:
469
469
DO --pass-args +ALPINE_ENV --version = 3.19
470
470
471
471
env.archlinux :
472
- FROM --pass-args tools+init-env --from artifactory.corp.mongodb.com/dockerhub/library/ archlinux
472
+ FROM --pass-args tools+init-env --from archlinux
473
473
RUN pacman-key --init
474
474
ARG --required purpose
475
475
@@ -490,7 +490,7 @@ env.centos7:
490
490
ALPINE_ENV :
491
491
COMMAND
492
492
ARG --required version
493
- FROM --pass-args tools+init-env --from artifactory.corp.mongodb.com/dockerhub/library/ alpine:$version
493
+ FROM --pass-args tools+init-env --from alpine:$version
494
494
# XXX: On Alpine, we just use the system's CMake. At time of writing, it is
495
495
# very up-to-date and much faster than building our own from source (since
496
496
# Kitware does not (yet) provide libmuslc builds of CMake)
@@ -512,7 +512,7 @@ ALPINE_ENV:
512
512
UBUNTU_ENV :
513
513
COMMAND
514
514
ARG --required version
515
- FROM --pass-args tools+init-env --from artifactory.corp.mongodb.com/dockerhub/library/ ubuntu:$version
515
+ FROM --pass-args tools+init-env --from ubuntu:$version
516
516
RUN __install curl build-essential
517
517
ARG --required purpose
518
518
@@ -530,7 +530,7 @@ UBUNTU_ENV:
530
530
CENTOS_ENV :
531
531
COMMAND
532
532
ARG --required version
533
- FROM --pass-args tools+init-env --from artifactory.corp.mongodb.com/dockerhub/library/ centos:$version
533
+ FROM --pass-args tools+init-env --from centos:$version
534
534
# Update repositories to use vault.centos.org
535
535
RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \
536
536
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
0 commit comments