Spaces:
Runtime error
Runtime error
File size: 471 Bytes
9fcdba0 74b6dad 77bb5ac 4cb7189 7b3c439 484cf90 4cb7189 484cf90 4cb7189 77bb5ac 8a74a9b deded0d 4cb7189 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Use your base Docker image from Docker Hub
FROM circulartextapp/circulartextai
# Set the working directory
WORKDIR /code
# Copy the requirements file and install dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the rest of your application files
COPY . .
# Specify the command to run your application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|