Added Dockerfile
This commit is contained in:
parent
3e25d66474
commit
f69352cd1b
5 changed files with 33 additions and 0 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:3
|
||||
|
||||
MAINTAINER Leon Haag-Fank "admin@haagfank.de"
|
||||
|
||||
VOLUME /data
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY zeit-dl requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN playwright install chromium && \
|
||||
playwright install-deps chromium
|
||||
|
||||
ENTRYPOINT python ./zeit-dl "$ZEITDL_USER" "$ZEITDL_PASSWORD" -o /data
|
Loading…
Add table
Add a link
Reference in a new issue