mirror of
https://github.com/azaion/detections.git
synced 2026-06-21 11:11:07 +00:00
8 lines
216 B
Docker
8 lines
216 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
RUN mkdir -p /app/Logs && chmod 0777 /app/Logs
|
|
CMD ["pytest", "--csv=/results/report.csv", "-v"]
|