Files
zeus-filter/Dockerfile
2026-01-22 10:54:50 +01:00

9 lines
129 B
Docker

FROM python:3.11
WORKDIR /app
COPY ./app .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u", "main.py"]