# Use an official Python runtime as a parent image | |
#FROM python:3.9-slim | |
# Set the working directory in the container | |
#WORKDIR /app | |
# Copy the requirements file into the container | |
#COPY requirements.txt requirements.txt | |
# Install any needed packages specified in requirements.txt | |
#RUN pip install --no-cache-dir -r requirements.txt | |
# Copy the rest of the application's code into the container | |
#COPY . . | |
# Command to run the app | |
# The app must listen on port 7860 in Hugging Face Spaces | |
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |
FROM python:3.9 | |
RUN useradd -m -u 1000 user | |
USER user | |
ENV PATH="/home/user/.local/bin:$PATH" | |
WORKDIR /app | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY --chown=user . /app | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |