fix: add ffmpeg to Dockerfile and update error message in entrypoint.sh to English

This commit is contained in:
krau
2025-11-28 10:26:35 +08:00
parent 1065acfdb8
commit 75f79e8abc
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
FROM alpine:latest
RUN apk add --no-cache curl
RUN apk add --no-cache curl ffmpeg
WORKDIR /app

View File

@@ -11,7 +11,7 @@ if [ -n "$CONFIG_URL" ]; then
fi
if [ ! -f /app/config.toml ]; then
echo "[ERROR] Missing config.toml: 请通过挂载或 CONFIG_URL 提供配置文件"
echo "[ERROR] Missing config.toml: Please provide the configuration file via mounting or CONFIG_URL"
exit 1
fi