fix(docker): use apk not apt-get (BSB base is Alpine)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mitchell R 2026-05-24 01:59:33 +02:00
parent 88526095e2
commit 3a451d88da
No known key found for this signature in database

View file

@ -64,12 +64,10 @@ ARG BF_MQTT_TOPIC_PREFIX=betterframe
USER root
# envsubst + ffmpeg
RUN apt-get update && apt-get install -y --no-install-recommends \
gettext-base ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# envsubst + ffmpeg (Alpine base)
RUN apk add --no-cache gettext ffmpeg
RUN mkdir -p /var/lib/betterframe && chown node:node /var/lib/betterframe
RUN mkdir -p /var/lib/betterframe && chown 1000:1000 /var/lib/betterframe
WORKDIR /home/bsb