File size: 467 Bytes
1200210 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 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"] |