Aktualisiere Dockerfile mit neuen Debian-Release-Images und verbessere die Versionierung

This commit is contained in:
Arndt Touby 2025-01-22 16:23:37 +01:00
parent 32191a1769
commit 23542330b2

View file

@ -7,13 +7,13 @@
# This file is based on these images: # This file is based on these images:
# #
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image # - https://hub.docker.com/r/hexpm/elixir/tags - for the build image
# - https://hub.docker.com/_/debian?tab=tags&page=1&name=bullseye-20240904-slim - for the release image # - https://hub.docker.com/_/debian?tab=tags&page=1&name=bookworm-20250113-slim - for the release image
# - https://pkgs.org/ - resource for finding needed packages # - https://pkgs.org/ - resource for finding needed packages
# - Ex: hexpm/elixir:1.17.2-erlang-27.0.1-debian-bullseye-20240904-slim # - Ex: hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20250113-slim
# #
ARG ELIXIR_VERSION=1.18.1 ARG ELIXIR_VERSION=1.18.1
ARG OTP_VERSION=27.2 ARG OTP_VERSION=27.2
ARG DEBIAN_VERSION=bookworm-20241223-slim ARG DEBIAN_VERSION=bookworm-20250113-slim
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"