Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG

Expand Down
2 changes: 1 addition & 1 deletion daemons/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG

Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG="master"

Expand Down
2 changes: 1 addition & 1 deletion fs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM rucio/rucio-clients:release-$TAG
FROM docker.io/rucio/rucio-clients:release-$TAG

USER root
RUN dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion fts-cron/Dockerfile_cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

# Repos needed for (VOMS and FTS) and WLCG certs
ADD ca.repo /etc/yum.repos.d/ca.repo
Expand Down
2 changes: 1 addition & 1 deletion fts-cron/Dockerfile_java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

# Repos needed for (VOMS and FTS) and WLCG certs
ADD ca.repo /etc/yum.repos.d/ca.repo
Expand Down
2 changes: 1 addition & 1 deletion init/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG

Expand Down
2 changes: 1 addition & 1 deletion probes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Authors:
# - Eric Vaandering, <ewv@fnal.gov>, 2020

FROM almalinux:9
FROM docker.io/almalinux:9

WORKDIR /tmp
ADD oic.rpm /tmp
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG

Expand Down
2 changes: 1 addition & 1 deletion test-fts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

# Enable EPEL
RUN dnf install -y yum-utils \
Expand Down
2 changes: 1 addition & 1 deletion test-ssh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

ARG OPENSSH_SERVER_VERSION=
ARG OPENSSH_CLIENTS_VERSION=
Expand Down
4 changes: 2 additions & 2 deletions test-webdav/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ubuntu:noble as deb_builder
FROM docker.io/ubuntu:noble as deb_builder
RUN set -ex; \
apt-get update; \
apt-get install -y \
Expand All @@ -19,7 +19,7 @@ COPY libapache2-mod-gsiproxy mod-gsiproxy
RUN cd mod-gsiproxy; dpkg-buildpackage


FROM ubuntu:noble
FROM docker.io/ubuntu:noble

# Optional package version pinning for reproducible images.
# When APACHE2_VERSION is set, all related package versions must be provided.
Expand Down
2 changes: 1 addition & 1 deletion test-xrootd-noauth/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

# Optional version pinning for reproducible images.
# When `XROOTD_VERSION` is provided (e.g. `5.9.1-1.el9`), we install
Expand Down
2 changes: 1 addition & 1 deletion test-xrootd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM almalinux:9
FROM docker.io/almalinux:9

# Optional version pinning for reproducible images.
# When `XROOTD_VERSION` is provided (e.g. `5.7.0-1.el9`), we install
Expand Down
2 changes: 1 addition & 1 deletion ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Authors:
# - Thomas Beermann, <thomas.beermann@cern.ch>, 2019

FROM almalinux:9
FROM docker.io/almalinux:9

ARG TAG

Expand Down
4 changes: 2 additions & 2 deletions webui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# - Eraldo Junior <ejunior@cbpf.br>, 2023

# ---------- Stage 1: builder (clone repo & install node deps) ----------
FROM almalinux:10 AS builder
FROM docker.io/almalinux:10 AS builder

ARG TAG

Expand Down Expand Up @@ -39,7 +39,7 @@ RUN npm install --include=dev && npx tsc --skipLibCheck && cp -rf src/templates
WORKDIR /opt/rucio/webui

# ---------- Stage 2: runtime ----------
FROM almalinux:10
FROM docker.io/almalinux:10

LABEL stage=production
ENV NODE_ENV=production
Expand Down