mirror of
https://github.com/ION606/ML-pipeline.git
synced 2026-05-14 21:06:54 +00:00
added rudamentary search and code execution
This commit is contained in:
+16
@@ -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"]
|
||||
Reference in New Issue
Block a user