From 471f36873699c635ae1a0d1818c5f5caa81d689f Mon Sep 17 00:00:00 2001 From: "david.bauer" <david.bauer@open-xchange.com> Date: Tue, 11 Feb 2025 10:23:07 +0000 Subject: [PATCH] Switch to base images hosted on gitlab.com --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb5fb1239..d9db16215 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.gitlab.open-xchange.com/appsuite/web-foundation/base-images/node_builder:latest AS builder +FROM registry.gitlab.com/openxchange/appsuite/web-foundation/base-images/node_builder:latest AS builder ARG APP_VERSION ARG BUILD_TIMESTAMP @@ -12,5 +12,5 @@ ENV PATH=$PNPM_HOME:$PATH RUN pnpm i -s -P && pnpm build && rm -rf /root/.local/share/pnpm -FROM registry.gitlab.open-xchange.com/appsuite/web-foundation/base-images/distroless/nginx:latest +FROM registry.gitlab.com/openxchange/appsuite/web-foundation/base-images/distroless/nginx:latest COPY --from=builder /app/build /usr/share/nginx/html -- GitLab