Switch back to alpine to fix official DockerHub builds

Reverts a76517d48c
This commit is contained in:
Justin Kromlinger 2023-06-20 12:13:50 +02:00
parent 17c4a88a88
commit c42fc6a251
No known key found for this signature in database
GPG Key ID: 69EF6D9E49A64EB8
2 changed files with 10 additions and 2 deletions

View File

@ -8,10 +8,12 @@
# Some templating is done in order to allow us to easily build different configurations and to
# allow us to automate the release process.
FROM docker.io/archlinux/archlinux:base AS verify
# Note: Only official DockerHub images are allowed, see https://github.com/docker-library/official-images/actions/runs/5321247374/jobs/9636110751?pr=14890#step:4:13
# While we could use archlinux:base it could also break our build process, so we avoid dog fooding here
FROM alpine:3.18 AS verify
COPY TEMPLATE_ROOTFS_FILE /
RUN pacman -Syu --noconfirm
RUN apk add --no-cache curl tar zstd
# TEMPLATE_ROOTFS_RELEASE_URL
RUN TEMPLATE_ROOTFS_DOWNLOAD && \

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}