Omkar008 commited on
Commit
11c6d53
1 Parent(s): 40da58c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -0
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.12.5
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app
6
+
7
+ RUN pip install -r requirements.txt
8
+
9
+ RUN useradd -m -u 1000 user
10
+
11
+ USER user
12
+
13
+ # Copy the rest of the application code into the container at /app
14
+ COPY --chown=user . /app/
15
+
16
+
17
+ # Command to run your application
18
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860" , "--workers" , "5"]