Files
status-python-sdk/Dockerfile
T
Nick Ninov 68dacbfc34 bot: PR changes
Make PR changes based on resolved suggestions
2026-03-23 07:36:49 +02:00

11 lines
242 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt \
&& if [ -f bot/requirements.txt ]; then pip install --no-cache-dir -r bot/requirements.txt; fi
ENTRYPOINT ["python", "monitor.py"]
CMD []