CoolFace
Apppublic

Codificador-23/codesage-backend

sourceHugging Faceupdated 13d agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.11-slim2 3# Install git4RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*5 6WORKDIR /app7 8COPY requirements.txt .9RUN pip install --no-cache-dir -r requirements.txt10 11COPY . .12 13CMD ["sh", "-c", "uvicorn main:app --host 0.0.0.0 --port ${PORT:-7860}"]