whatsapp_bridge/Dockerfile aktualisiert

This commit is contained in:
2026-04-14 12:11:20 +00:00
parent d25a4d138c
commit c5e0d38bf3

View File

@@ -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 \