Spaces:
Runtime error
Runtime error
File size: 458 Bytes
9fcdba0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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"]
|