Spaces:
Sleeping
Sleeping
File size: 607 Bytes
9b06bd3 2376236 9b06bd3 2376236 9b06bd3 2376236 9b06bd3 2376236 9b06bd3 2376236 9b06bd3 | 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 27 28 29 | FROM python:3.10.13-slim-bookworm
# Set environment variables
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Setup new user named user with UID 1000
RUN useradd -m -u 1000 user
# Define working directory
WORKDIR $HOME/app
# Switch to user
USER user
# Copy the requirements file
COPY --chown=user:user requirements.txt $HOME/app
# Install the requirements
RUN pip install -r requirements.txt
# Copy the rest of the files
COPY --chown=user:user . $HOME/app
# Expose the port
EXPOSE 7860/tcp
# Run the application
ENTRYPOINT ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |