Spaces:
Running
Running
File size: 903 Bytes
9fcc41f 8af33a6 5fc0408 2f0c092 5fc0408 62adfb4 d2c7ae1 b84d436 62adfb4 b84d436 5fc0408 9fcc41f 5fc0408 9fcc41f 5fc0408 62adfb4 573094f 5fc0408 62adfb4 94f266a 5fc0408 b0bc1bf |
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 30 31 32 33 34 35 36 37 |
FROM python:3.9
RUN pwd && ls -l
# Create a user with UID 1000
RUN useradd -m -u 1000 user
# Set the working directory and user environment variables
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Switch to the user's home directory
WORKDIR $HOME
# Copy the application files into the user's home directory
COPY --chown=user:user . $HOME
# Copy the requirements file to the /code directory
COPY ./requirements.txt /code/requirements.txt
# Install the Python dependencies
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Create a directory for cache and set permissions
RUN mkdir -p $HOME/.cache && chmod 777 $HOME/.cache
# Switch back to the user
USER user
# Set the working directory for the application
WORKDIR $HOME
RUN pwd && ls -l
# Start the application using gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
|