benchmark-result-collector/Dockerfile

19 lines
326 B
Docker
Raw Permalink Normal View History

2020-10-23 02:00:42 +02:00
FROM python:3
WORKDIR /app
VOLUME /data
VOLUME /chart
VOLUME /text
ENV SEARCHDIR /data
ENV CHARTDIR /chart
ENV TEXTDIR /text
2020-10-23 19:12:40 +02:00
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt && rm requirements.txt
2020-10-23 02:00:42 +02:00
COPY make_graphs.py .
CMD ["python3", "make_graphs.py"]
ENTRYPOINT ["python3", "make_graphs.py"]