benchmark-result-collector/Dockerfile
Torma 659c2c90fa
All checks were successful
continuous-integration/drone/push Build is passing
faster drone run
2020-10-23 18:41:57 +02:00

19 lines
358 B
Docker

FROM python:3
WORKDIR /app
VOLUME /data
VOLUME /chart
VOLUME /text
ENV SEARCHDIR /data
ENV CHARTDIR /chart
ENV TEXTDIR /text
COPY requirements.txt .
RUN apt update && apt install -y python3-matplotlib && apt clean && pip3 install --no-cache-dir sentry_sdk
COPY make_graphs.py .
CMD ["python3", "make_graphs.py"]
ENTRYPOINT ["python3", "make_graphs.py"]