RohanExploit/Meta-hackathon
0
1FROM python:3.10-slim2 3WORKDIR /app4 5# Copy entire repo (editable install needs all package files)6COPY . .7 8# Install dependencies9RUN pip install --no-cache-dir --upgrade pip \10 && pip install --no-cache-dir -e .11 12# Expose port13EXPOSE 800014 15# Run the application16CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]17 