Speed_Read_AI / Dockerfile
circulartext's picture
Create Dockerfile
3658992
raw
history blame
302 Bytes
# 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"]