Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

ARG VESPA_BASE_IMAGE=el8

FROM docker.io/almalinux:8 AS el8
FROM docker.io/almalinux:10 AS el8

RUN echo "install_weak_deps=False" >> /etc/dnf/dnf.conf && \
echo "fastestmirror=0" >> /etc/dnf/dnf.conf && \
Expand All @@ -17,7 +17,7 @@ RUN echo "install_weak_deps=False" >> /etc/dnf/dnf.conf && \

LABEL org.opencontainers.image.base.name="docker.io/almalinux:8"

FROM docker.io/almalinux:9 AS el9
FROM docker.io/almalinux:10 AS el9

RUN echo "install_weak_deps=False" >> /etc/dnf/dnf.conf && \
echo "fastestmirror=0" >> /etc/dnf/dnf.conf && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.minimal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
FROM docker.io/almalinux:8 AS build
FROM docker.io/almalinux:10 AS build

ARG VESPA_VERSION
ARG ROOTFS_INSTALL_DIR=/tmp_install
Expand Down