snippets/python/accelerated-stats/Dockerfile

9 lines
125 B
Text
Raw Permalink Normal View History

FROM python:3.8-slim
RUN mkdir /app
ADD . /app
RUN pip3 install /app
ENTRYPOINT [ "/usr/local/bin/accelerated_exporter" ]