Releajing commited on
Commit
b1b350d
1 Parent(s): e355ce1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile CHANGED
@@ -103,3 +103,14 @@ ENV PYTHONUNBUFFERED=1 \
103
  SHELL=/bin/bash
104
 
105
  CMD ["./start_server.sh"]
 
 
 
 
 
 
 
 
 
 
 
 
103
  SHELL=/bin/bash
104
 
105
  CMD ["./start_server.sh"]
106
+
107
+ FROM python:3.9
108
+
109
+ WORKDIR /app
110
+
111
+ COPY requirements.txt .
112
+ RUN pip install --no-cache-dir -r requirements.txt
113
+
114
+ COPY . .
115
+
116
+ CMD ["python", "zefir7b_api.py"]