Sharathhebbar24 commited on
Commit
3cefd90
1 Parent(s): 4db0113

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim-bullseye
2
+
3
+ WORKDIR /
4
+
5
+ COPY requirements.txt requirements.txt
6
+
7
+ RUN pip install --upgrade pip
8
+ RUN pip install -r requirements.txt
9
+
10
+ COPY . .
11
+ EXPOSE $PORT
12
+
13
+ CMD ["python", "server.py"]