Remove obsolete workflow and update Docker configurations

Removed the `docker-tag.yaml` workflow as it is no longer needed. Updated the destination tag format in `docker-master.yaml` and upgraded Node.js major version to 22 in the Dockerfile for compatibility and consistency.
This commit is contained in:
Guillaume "B.B." Van Hemmen 2025-05-19 19:10:05 +02:00
parent 34963812db
commit 6095ba1cac
3 changed files with 2 additions and 25 deletions

View file

@ -3,7 +3,7 @@ FROM debian:12
LABEL maintainer="guillaume@van-hemmen.com"
ARG ARG_TZ="Europe/Paris"
ARG ARG_NODE_MAJOR=20
ARG ARG_NODE_MAJOR=22
RUN ln -snf /usr/share/zoneinfo/$ARG_TZ /etc/localtime && echo $ARG_TZ > /etc/timezone && \
apt-get update && apt-get install -y ca-certificates curl gnupg && \