benchmark-result-collector/Dockerfile

18 lines
334 B
Docker

FROM python:3
WORKDIR /app
VOLUME /data
VOLUME /chart
VOLUME /text
ENV SEARCHDIR /data
ENV CHARTDIR /chart
ENV TEXTDIR /text
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"]