Files
ML-pipeline/Dockerfile
T

16 lines
294 B
Docker
Raw Normal View History

2025-04-01 22:29:59 -04:00
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"]