python-dependency-injector/examples/miniapps/asyncio-daemon/Dockerfile
2024-12-08 18:53:29 +02:00

14 lines
242 B
Docker

FROM python:3.13-bookworm
ENV PYTHONUNBUFFERED=1
WORKDIR /code
COPY . /code/
RUN apt-get install openssl \
&& pip install --upgrade pip \
&& pip install -r requirements.txt \
&& rm -rf ~/.cache
CMD ["python", "-m", "monitoringdaemon"]