mirror of
https://github.com/Wyrrrd/docker-webcomix.git
synced 2026-02-13 20:50:23 +01: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
|