aefrss / infrastructure /docker /Dockerfile.python-service
mohamedkh001
Deploy AEFRS complete system with models and services
ea93121
raw
history blame contribute delete
140 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONPATH=/app