Be specific about docker.io/alpine
Some checks failed
continuous-integration/woodpecker the build failed

This commit is contained in:
Cat /dev/Nulo 2021-12-09 14:40:13 -03:00
parent 31f05c6a70
commit 6de57f0c5e

View file

@ -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