gropple/Dockerfile

10 lines
290 B
Docker
Raw Permalink Normal View History

FROM ubuntu:noble
2023-11-22 08:32:20 +10:30
COPY gropple /
2022-05-14 16:38:48 +09:30
2023-11-22 08:32:20 +10:30
RUN apt update && apt install -y curl python3 ffmpeg
RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/bin/yt-dlp
RUN chmod a+x /usr/bin/yt-dlp
2022-05-14 16:38:48 +09:30
# Run executable
2023-11-22 08:32:20 +10:30
CMD ["/gropple", "--config-path", "/config/gropple.json"]