circulartext commited on
Commit
3658992
·
1 Parent(s): 05316f7

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the base Docker image
2
+ FROM circulartextapp/lastread
3
+
4
+ # Set the working directory to /app (if needed)
5
+ WORKDIR /app
6
+
7
+ # Copy the current directory contents into the container at /app
8
+ COPY . /app
9
+
10
+ # Example CMD (modify as needed)
11
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]