You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wubloader/graphs/Dockerfile

10 lines
239 B
Docker

FROM python:3.11
RUN pip install bokeh
COPY graphs /tmp/graphs
RUN pip install /tmp/graphs && rm -r /tmp/graphs
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "graphs"]