docker added

This commit is contained in:
fardin-developer
2025-01-17 22:37:21 +05:30
parent 70c18c8251
commit fd0b28f041
2 changed files with 17 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x /app/agentic_security.py || true
EXPOSE 8718
# Run the initialization command first, then start the application
CMD ["sh", "-c", "python -m agentic_security i && python -m agentic_security s"]
+1
View File
@@ -8,3 +8,4 @@ cache_to_disk
# datasets
loguru
pandas
agentic_security