Change base image

This commit is contained in:
Nicolas Mowen 2024-11-20 11:37:16 -07:00
parent 6e41fe6132
commit 6786075bf3

View File

@ -3,12 +3,12 @@
# https://askubuntu.com/questions/972516/debian-frontend-environment-variable # https://askubuntu.com/questions/972516/debian-frontend-environment-variable
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ARG BASE_IMAGE=debian:11 ARG BASE_IMAGE=debian:12
ARG SLIM_BASE=debian:11-slim ARG SLIM_BASE=debian:12-slim
FROM ${BASE_IMAGE} AS base FROM ${BASE_IMAGE} AS base
FROM --platform=${BUILDPLATFORM} debian:11 AS base_host FROM --platform=${BUILDPLATFORM} debian:12 AS base_host
FROM ${SLIM_BASE} AS slim-base FROM ${SLIM_BASE} AS slim-base