Spaces:
Running
Running
# Use the latest Python image | |
FROM python:latest | |
# Create a user with UID 1000 | |
RUN useradd -m -u 1000 user | |
USER user | |
# Set environment variable | |
ENV PATH="/home/user/.local/bin:$PATH" | |
# Set the working directory | |
WORKDIR /app | |
# Copy the requirements file and install dependencies | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
# Copy the rest of the application files | |
COPY --chown=user . /app | |
# Command to run the FastAPI app with Uvicorn | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |