CoolFace
Apppublic

anishasingh-dev/openenv-ai-support-simulation-projects

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.92 3WORKDIR /app4 5# Copy all files6COPY . .7 8# Install dependencies9RUN pip install --no-cache-dir -r requirements.txt10 11# Run FastAPI app12CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]