docker-store-metrics-in-db/Dockerfile

14 lines
424 B
Docker
Raw Normal View History

2024-01-30 09:52:28 +00:00
FROM debian:buster
MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Europe/Paris
RUN apt-get update && apt-get -y install python-pip python-mysqldb python-yaml
2024-06-21 15:31:51 +00:00
RUN pip install pyrsistent==0.16.0
2024-06-21 15:26:28 +00:00
RUN pip install "jsonschema<4.0"
RUN pip install flask-restx==1.3.0
2024-06-21 15:01:13 +00:00
RUN pip install flask-sqlalchemy
2024-01-30 09:52:28 +00:00
WORKDIR /root
COPY api.py /root/
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]