Spaces:
Runtime error
Runtime error
File size: 523 Bytes
531d852 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Use Python 3.11 slim image
FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && apt-get install -y git wget && rm -rf /var/lib/apt/lists/*
# Create a non-root user
RUN useradd -m appuser
USER appuser
# Set working directory
WORKDIR /app
# Copy and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
# Expose port 8000 for FastAPI
EXPOSE 8000
# Start FastAPI server
CMD ["python", "app.py"]
|