This commit is contained in:
2020-01-22 14:34:28 +01:00
commit 84288dd615
5 changed files with 1174 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
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 chart_create.py .
CMD ["python3", "chart_create.py"]