From 3b5fb7ff79504f075ae75e81826d0305786adf99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Bachmann?= Date: Wed, 15 Apr 2026 17:53:43 +0000 Subject: [PATCH] whatsapp_bridge/Dockerfile aktualisiert --- whatsapp_bridge/Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/whatsapp_bridge/Dockerfile b/whatsapp_bridge/Dockerfile index 7806aeb..9b765aa 100644 --- a/whatsapp_bridge/Dockerfile +++ b/whatsapp_bridge/Dockerfile @@ -1,7 +1,5 @@ -# Wir nutzen das Standard Alpine Image von Docker Hub FROM alpine:3.19 -# System-Abhängigkeiten (inkl. bash für bashio Kompatibilität) RUN apk add --no-cache \ nodejs \ npm \ @@ -15,20 +13,16 @@ RUN apk add --no-cache \ bash \ curl -# Puppeteer Konfiguration ENV CHROME_BIN=/usr/bin/chromium-browser \ PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true WORKDIR /app -# Node-Abhängigkeiten installieren COPY package.json ./ RUN npm install --production -# App-Code kopieren COPY . . -# Start-Skript vorbereiten RUN chmod a+x /app/run.sh CMD [ "/app/run.sh" ] \ No newline at end of file