Spaces:
Runtime error
Runtime error
File size: 351 Bytes
b334624 2f2f877 b334624 6a5c207 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Use the official Python image
FROM python:3.11-slim
# Set the working directory
WORKDIR /app
# Copy the current directory contents into the container
COPY . /app
# Install the dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Command to run the FastAPI app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "55000"]
|