From 6de57f0c5e702faf0cae0e785ffc1c84ab8bbbbe Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 9 Dec 2021 14:40:13 -0300 Subject: [PATCH] Be specific about docker.io/alpine --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ce5f5c0..bf85289 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ARG GID=991 ### Build Hardened Malloc ARG ALPINE_VERSION -FROM alpine:${ALPINE_VERSION} as build-malloc +FROM docker.io/alpine:${ALPINE_VERSION} as build-malloc ARG HARDENED_MALLOC_VERSION ARG CONFIG_NATIVE=false @@ -28,7 +28,7 @@ RUN apk --no-cache add build-base git gnupg && cd /tmp \ ### Build Mastodon ARG ALPINE_VERSION -FROM alpine:${ALPINE_VERSION} as mastodon-build +FROM docker.io/alpine:${ALPINE_VERSION} as mastodon-build ARG MASTODON_VERSION ARG MASTODON_REPOSITORY @@ -76,7 +76,7 @@ RUN yarn install --pure-lockfile --ignore-engines \ ### Mastodon runtime ARG ALPINE_VERSION -FROM alpine:${ALPINE_VERSION} as mastodon +FROM docker.io/alpine:${ALPINE_VERSION} as mastodon ARG UID ARG GID