create
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-23 02:00:42 +02:00
parent 06493280f6
commit cc8243f1f5
5 changed files with 277 additions and 1 deletions

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM python:3
WORKDIR /app
VOLUME /data
VOLUME /chart
VOLUME /text
ENV SEARCHDIR /data
ENV CHARTDIR /chart
ENV TEXTDIR /text
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt && rm requirements.txt
COPY make_graphs.py .
CMD ["python3", "make_graphs.py"]
ENTRYPOINT ["python3", "make_graphs.py"]