| FROM python:3.9-slim | |
| WORKDIR /app | |
| # Copy requirements and install dependencies | |
| COPY hf_requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy application files | |
| COPY complete_medical_dashboard.py . | |
| COPY app.py . | |
| # Create necessary directories | |
| RUN mkdir -p uploads | |
| # Set environment variables | |
| ENV FLASK_APP=app.py | |
| ENV FLASK_ENV=production | |
| ENV PORT=7860 | |
| # Expose port | |
| EXPOSE 7860 | |
| # Run the application | |
| CMD ["python", "app.py"] |