diff --git a/whatsapp_bridge/Dockerfile b/whatsapp_bridge/Dockerfile index 5c8158c..7806aeb 100644 --- a/whatsapp_bridge/Dockerfile +++ b/whatsapp_bridge/Dockerfile @@ -1,7 +1,7 @@ -ARG BUILD_FROM=ghcr.io/home-assistant/amd64-base-alpine:3.19 -FROM $BUILD_FROM +# Wir nutzen das Standard Alpine Image von Docker Hub +FROM alpine:3.19 -# System-Abhängigkeiten +# System-Abhängigkeiten (inkl. bash für bashio Kompatibilität) RUN apk add --no-cache \ nodejs \ npm \ @@ -11,7 +11,9 @@ RUN apk add --no-cache \ harfbuzz \ ca-certificates \ ttf-freefont \ - udev + udev \ + bash \ + curl # Puppeteer Konfiguration ENV CHROME_BIN=/usr/bin/chromium-browser \