lets try this
Build and Push Docker Images / build-and-push (push) Failing after 50s

This commit is contained in:
2026-02-10 23:44:22 +01:00
parent 763c802acf
commit db39c420c0
4 changed files with 325 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY main.py .
# /movies and /series are mounted by the user (video libraries)
# /data is mounted for channels.json
VOLUME ["/movies", "/series", "/data"]
EXPOSE 8080
CMD ["python", "-u", "main.py"]