Add dockerfiles goodie

This commit is contained in:
Leonetienne
2022-04-21 14:14:16 +02:00
parent bded0b69b2
commit 0e520fe937
4 changed files with 50 additions and 0 deletions

23
goodies/Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM debian
MAINTAINER Leon Etienne
RUN apt-get update
RUN apt-get install -y \
python3 \
python3-pip
RUN pip install \
yt-dlp
RUN apt-get install -y \
ffmpeg
COPY ./entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
WORKDIR /app/
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["./Tubio"]