mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-08-16 09:50:22 +02:00
12 lines
193 B
Docker
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"]
|