chore: Don't hardcode versions in Dockerfiles and workflows (#2291)

This commit is contained in:
Ayaz Salikhov
2025-07-03 11:53:53 +01:00
committed by GitHub
parent cc506fd094
commit 687b1e8887
5 changed files with 42 additions and 20 deletions

View File

@@ -1,7 +1,10 @@
FROM ghcr.io/xrplf/clio-gcc:12.3.0 AS clio-gcc
ARG CLANG_MAJOR_VERSION=invalid
ARG GCC_VERSION=invalid
FROM ghcr.io/xrplf/clio-gcc:${GCC_VERSION} AS clio-gcc
FROM ghcr.io/xrplf/clio-tools:latest AS clio-tools
FROM ghcr.io/xrplf/clio-clang:16
FROM ghcr.io/xrplf/clio-clang:${CLANG_MAJOR_VERSION}
ARG DEBIAN_FRONTEND=noninteractive