xdragxt commited on
Commit
f6821eb
·
verified ·
1 Parent(s): 97b065b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -15,14 +15,14 @@
15
 
16
  RUN pip install --upgrade pip
17
  RUN pip install --no-cache-dir -r requirements.txt
18
- RUN pip install uvicorn fastapi
19
 
20
 
21
  RUN bash installer.sh
22
 
23
  # Fix for Git's 'dubious ownership' error
24
  RUN git config --global --add safe.directory /app
25
-
26
 
27
 
28
  # Ensure writable dirs
@@ -34,6 +34,6 @@
34
 
35
  ENV PYTHONPATH="${PYTHONPATH}:/app"
36
 
37
- CMD bash startup & python3 server.py
38
 
39
 
 
15
 
16
  RUN pip install --upgrade pip
17
  RUN pip install --no-cache-dir -r requirements.txt
18
+ ##RUN pip install uvicorn fastapi
19
 
20
 
21
  RUN bash installer.sh
22
 
23
  # Fix for Git's 'dubious ownership' error
24
  RUN git config --global --add safe.directory /app
25
+
26
 
27
 
28
  # Ensure writable dirs
 
34
 
35
  ENV PYTHONPATH="${PYTHONPATH}:/app"
36
 
37
+ CMD bash startup
38
 
39