added rudamentary search and code execution

This commit is contained in:
2025-04-01 22:29:59 -04:00
parent e02010d01f
commit b935b6002b
12 changed files with 989 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
# Install system dependencies (AppArmor)
RUN apt-get update && apt-get install -y apparmor
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
# Copy the entire project
COPY . .
# Run the main application
CMD ["python", "main.py"]