1
0
mirror of https://github.com/Wyrrrd/docker-webcomix.git synced 2026-04-24 06:33:17 +02:00

Initial commit

This commit is contained in:
Wyrrrd
2022-07-12 11:36:43 +02:00
commit 2f70d92b1e
5 changed files with 698 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:slim
WORKDIR /app
RUN pip install webcomix
ADD startup.sh /app/startup.sh
RUN chmod +x /app/startup.sh
VOLUME /out
ENTRYPOINT /app/startup.sh