Spaces:
Sleeping
Sleeping
File size: 323 Bytes
325da62 25778ae 325da62 f9715d5 9c93268 f9715d5 325da62 25778ae 325da62 9c93268 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM python:3.11-slim
# Create non-root user with UID 1000
RUN useradd -m -u 1000 user
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV APP_PORT=7152
EXPOSE 7152
# Switch to non-root user
USER user
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7152"] |