From 446758a8135ba3893a1ee877e8934c1c80c82cd2 Mon Sep 17 00:00:00 2001 From: sidey79 <7968127+sidey79@users.noreply.github.com> Date: Sun, 10 Nov 2024 22:20:09 +0100 Subject: [PATCH] build[Dockerfile]: Updarte to bookworm base image --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f2c5d97..12496fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.11.0-bullseye-slim@sha256:01e6d7155cfe9567294142e456da98864df32fd51e7d64ea04c1287b3fdc4bc5 +FROM node:22.11.0-bookworm-slim ENV NODE_ENV=production ARG TARGETPLATFORM @@ -31,7 +31,6 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \ curl \ jq \ - lsb-release \ openssh-client \ && apt-get autoremove -qqy && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[^.] ~/.??* ~/* @@ -63,7 +62,7 @@ ARG L_VCS_URL="https://github.com/fhem/alexa-fhem-docker/" ARG L_VENDOR="FHEM" ARG L_LICENSES="MIT" ARG L_TITLE="alexa-fhem-${TARGETPLATFORM}" -ARG L_DESCR="FHEM complementary Docker image for Amazon alexa voice assistant, based on Debian Bullseye." +ARG L_DESCR="FHEM complementary Docker image for Amazon alexa voice assistant, based on Debian Bookworm." ARG L_AUTHORS_ALEXAFHEM="https://github.com/justme-1968/alexa-fhem/graphs/contributors" ARG L_URL_ALEXAFHEM="https://fhem.de/"