mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 22:36:32 +00:00
86d8e7e22d
Made-with: Cursor
7 lines
169 B
Docker
7 lines
169 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
CMD ["pytest", "--csv=/results/report.csv", "-v"]
|