Nainikas/Traffic-Aware-ETA-Prediction-Using-Temporal-Deep-Learning
0
1# Use official Python image2FROM python:3.10-slim3 4# Set work directory5WORKDIR /app6 7# Copy everything8COPY requirements.txt .9COPY src ./src10COPY models ./models11COPY data ./data12 13# Install Python dependencies14RUN pip install --no-cache-dir --upgrade pip \15 && pip install --no-cache-dir -r requirements.txt16 17# Expose API port18EXPOSE 800019 20# Run the FastAPI app with uvicorn21CMD ["uvicorn", "src.api.app:app", "--host", "0.0.0.0", "--port", "7860"]22 