Distopia22/Icd-cpt-coding-api
0
1FROM python:3.11-slim2 3WORKDIR /app4 5# Copy requirements first for better caching6COPY requirements.txt .7 8# Install dependencies9RUN pip install --no-cache-dir -r requirements.txt10 11# Copy the entire project12COPY . .13 14# Expose port 7860 (Hugging Face Spaces default)15EXPOSE 786016 17# Run the application18CMD ["python", "src/main.py"]