Spaces:
Sleeping
Sleeping
# Use the base Docker image | |
FROM circulartextapp/lastread | |
# Set the working directory to /app (if needed) | |
WORKDIR /app | |
# Copy the current directory contents into the container at /app | |
COPY . /app | |
# Example CMD (modify as needed) | |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"] |