mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 20:16:35 +00:00
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:
parent
88526095e2
commit
3a451d88da
1 changed files with 3 additions and 5 deletions
|
|
@ -64,12 +64,10 @@ ARG BF_MQTT_TOPIC_PREFIX=betterframe
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
# envsubst + ffmpeg
|
# envsubst + ffmpeg (Alpine base)
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apk add --no-cache gettext ffmpeg
|
||||||
gettext-base ffmpeg \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
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
|
WORKDIR /home/bsb
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue