util/docker/doc.coreboot.org: Use Alpine minor instead of point releases

There is no reason to stick to the point releases. So use the 3.19 base
image referring to the latest minor release instead. Also, update
installed packages to latest versions from that release.

Change-Id: Ic947f99ae7231918ec2e6105f8f3050a17fd1176
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85726
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nicholas Chin <nic.c3.14@gmail.com>
This commit is contained in:
Felix Singer 2024-12-21 23:58:06 +01:00
commit 38ee22f6da

View file

@ -1,8 +1,10 @@
FROM alpine:3.19.1
FROM alpine:3.19
COPY makeSphinx.sh /makeSphinx.sh
RUN \
apk update && \
apk upgrade --no-cache && \
apk add --no-cache \
python3 \
py3-pip \