fabaccess-prometheus-exporter/Dockerfile

16 lines
299 B
Docker
Raw Permalink Normal View History

2023-02-07 04:21:34 +01:00
FROM python:3.10.4-bullseye
2023-02-07 03:49:51 +01:00
WORKDIR /app
2023-02-07 04:38:42 +01:00
COPY requirements.txt requirements.txt
2023-02-07 04:21:34 +01:00
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y cmake capnproto clang gcc build-essential
2023-02-07 04:38:42 +01:00
COPY . .
2023-02-07 03:49:51 +01:00
RUN pip3 install -r requirements.txt
2023-02-07 04:21:34 +01:00
2023-02-07 05:34:26 +01:00
EXPOSE 9000
2023-02-07 04:21:34 +01:00
VOLUME /app/config
CMD [ "python3", "main.py"]