fabaccess-prometheus-exporter/Dockerfile
2023-02-07 04:21:34 +01:00

13 lines
258 B
Docker

FROM python:3.10.4-bullseye
WORKDIR /app
COPY . .
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y cmake capnproto clang gcc build-essential
RUN pip3 install -r requirements.txt
VOLUME /app/config
CMD [ "python3", "main.py"]
EXPOSE 9877