1
0
mirror of https://github.com/tiyn/stud.ip-crawler.git synced 2025-10-10 01:41:20 +02:00

bugfixes: included error message for large files - skipping them

This commit is contained in:
TiynGER
2020-11-11 00:45:30 +01:00
parent 9e6355f7de
commit 3d8d71c3fd
6 changed files with 48 additions and 48 deletions

33
Dockerfile Normal file
View File

@@ -0,0 +1,33 @@
FROM python
LABEL maintainer "TiynGER <mail@martenkante.eu>"
ENV USER admin
ENV PSWD admin
ENV URL admin
ENV HOST mysql
ENV INTERVAL 86400
ENV DB_USER root
ENV DB_PSWD root
ADD src /studip
WORKDIR /studip
RUN pip install -r requirements.txt
ADD docker-entry.sh .
RUN chmod +x docker-entry.sh
VOLUME /studip/data
WORKDIR /studip
CMD ["./docker-entry.sh"]