xdragxt commited on
Commit
a345285
·
verified ·
1 Parent(s): 0e85329

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -15,13 +15,13 @@
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
  RUN bash installer.sh
21
 
22
  # Fix for Git's 'dubious ownership' error
23
  RUN git config --global --add safe.directory /app
24
 
 
25
 
26
  # Ensure writable dirs
27
  RUN mkdir -p /app/sessions && chmod -R 777 /app/sessions
@@ -32,5 +32,5 @@
32
 
33
  ENV PYTHONPATH="${PYTHONPATH}:/app"
34
 
35
- CMD bash startup & python3 server.py
36
 
 
15
 
16
  RUN pip install --upgrade pip
17
  RUN pip install --no-cache-dir -r requirements.txt
 
18
 
19
  RUN bash installer.sh
20
 
21
  # Fix for Git's 'dubious ownership' error
22
  RUN git config --global --add safe.directory /app
23
 
24
+
25
 
26
  # Ensure writable dirs
27
  RUN mkdir -p /app/sessions && chmod -R 777 /app/sessions
 
32
 
33
  ENV PYTHONPATH="${PYTHONPATH}:/app"
34
 
35
+ CMD bash startup
36