File size: 302 Bytes
3658992
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# 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"]