Files
fuzzforge_ai/services/ingestion_dispatcher/Dockerfile
T
2025-11-14 12:29:00 +01:00

12 lines
193 B
Docker

FROM python:3.12-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py healthcheck.py ./
CMD ["python", "app.py"]