mirror of
https://github.com/Wyrrrd/docker-webcomix.git
synced 2026-04-23 22:23:17 +02:00
11 lines
157 B
Docker
11 lines
157 B
Docker
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
|