update Dockerfiles to include downloading ffmpeg

This commit is contained in:
2026-02-25 16:53:26 +03:00
parent 8bbf97e4c0
commit 0c5d17663c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@ RUN npx tsc -p tsconfig.build.json
# ---- runtime ----
FROM node:lts-alpine AS runner
RUN apk add --no-cache ffmpeg
WORKDIR /app
ENV NODE_ENV=production
+1
View File
@@ -12,6 +12,7 @@ RUN bunx tsc -p tsconfig.build.json
# ---- runtime ----
FROM oven/bun:alpine AS runner
RUN apk add --no-cache ffmpeg
WORKDIR /app
ENV NODE_ENV=production