fix: update Alpine base image (#3938)

* fix: update Alpine base image

Alpine 3.11 is out of support since nearly a year

* chore: help Renovate detect images in  the Earthfile
This commit is contained in:
Florian Greinacher 2024-09-26 17:21:26 +02:00 committed by GitHub
parent 07b69e1795
commit dcb0ff5f51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -1,6 +1,6 @@
VERSION --new-platform 0.6
FROM --platform=linux/amd64 alpine:3.15.5
FROM --platform=linux/amd64 alpine:3.20.3
ARG version=develop
WORKDIR /build
@ -119,7 +119,7 @@ docker:
# in as space separated strings using the full account/repo:tag format.
# https://github.com/earthly/earthly/blob/aea38448fa9c0064b1b70d61be717ae740689fb9/docs/earthfile/earthfile.md#assigning-multiple-image-names
ARG TARGETPLATFORM
FROM --platform=$TARGETPLATFORM alpine:3.15.5
FROM --platform=$TARGETPLATFORM alpine:3.20.3
RUN apk update && apk add --no-cache ffmpeg ffmpeg-libs ca-certificates unzip && update-ca-certificates
RUN addgroup -g 101 -S owncast && adduser -u 101 -S owncast -G owncast
WORKDIR /app

View file

@ -18,6 +18,13 @@
"major": {
"dependencyDashboardApproval": true
},
"docker": {
"fileMatch": [
"(^|/)Earthfile$",
"(^|/|\\.)Dockerfile$",
"(^|/)Dockerfile[^/]*$"
]
},
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates",