CoolFace
Apppublic

northner/logger

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1# Use official Python image2FROM python:3.10-slim3 4# Set working directory5WORKDIR /app6 7# Copy requirements and install dependencies8COPY requirements.txt .9RUN pip install --no-cache-dir -r requirements.txt10 11# Copy the rest of the app12COPY . .13 14# Run the FastAPI app with Uvicorn15CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]16