fix dockerfile
Build Docker images / push-image (push) Successful in 3m14s Details

This commit is contained in:
minish 2023-09-15 23:19:53 -04:00
parent 1ae8a38301
commit 5e1b38289e
Signed by: min
GPG Key ID: FEECFF24EF0CE9E9
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
FROM node:18-alpine
FROM node:18-bookworm
ENV NODE_ENV=production
RUN ["apk", "update"]
RUN ["apk", "add", "ffmpeg"]
RUN ["apk", "add", "yt-dlp"]
RUN apt-get update
RUN apt-get install -y ffmpeg
RUN apt-get install -y yt-dlp
WORKDIR /app