From 05b05e672508564720c66f54f10c557513df0584 Mon Sep 17 00:00:00 2001 From: eulaly Date: Sun, 17 Aug 2025 13:39:11 -0400 Subject: [PATCH] fixed dockerfile permission issue --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index bea22f4..8cd94e5 100644 --- a/dockerfile +++ b/dockerfile @@ -9,5 +9,6 @@ RUN python3 -m pip install --no-cache-dir -r requirements.txt COPY youdis.py youdis.py COPY default-yt-dlp.conf /app/default-yt-dlp.conf COPY create-ytdlp-config.sh /app/create-ytdlp-config.sh +RUN chmod 755 /app/create-ytdlp-config.sh ENTRYPOINT ["/app/create-ytdlp-config.sh"] CMD ["python3", "youdis.py"] \ No newline at end of file