CoolFace
Apppublic

RohanExploit/Meta-hackathon

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
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