Be specific about docker.io/alpine
Some checks failed
continuous-integration/woodpecker the build failed
Some checks failed
continuous-integration/woodpecker the build failed
This commit is contained in:
parent
31f05c6a70
commit
6de57f0c5e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue