From 4f112a4cdb8fa1213aa7498605d6da722cbf9b3a Mon Sep 17 00:00:00 2001 From: Casey Link Date: Mon, 19 Feb 2024 09:28:30 +0100 Subject: [PATCH] Fully qualify the base images --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e55105..859fe5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ARG GPG_FINGERPRINT="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A" # --------------------------------------------------- ### Build PHP base -FROM php:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} as base +FROM docker.io/library/php:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} as base ARG SNUFFLEUPAGUS_VERSION @@ -84,7 +84,7 @@ RUN apk -U upgrade \ ### Build Hardened Malloc ARG ALPINE_VERSION -FROM alpine:${ALPINE_VERSION} as build-malloc +FROM docker.io/library/alpine:${ALPINE_VERSION} as build-malloc ARG HARDENED_MALLOC_VERSION ARG CONFIG_NATIVE=false @@ -98,7 +98,7 @@ RUN apk --no-cache add build-base git gnupg && cd /tmp \ ### Fetch nginx -FROM nginx:${NGINX_VERSION}-alpine as nginx +FROM docker.io/library/nginx:${NGINX_VERSION}-alpine as nginx ### Build Nextcloud (production environemnt)