northner/logger
0
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 