AstraOS commited on
Commit
5f37610
·
verified ·
1 Parent(s): 1b8729a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -27,6 +27,9 @@ RUN bash -c "source $NVM_DIR/nvm.sh && nvm install --lts && nvm use --lts && nod
27
  WORKDIR /app
28
  COPY . /app
29
 
 
 
 
30
  # Expose ports
31
  EXPOSE 3000 7860
32
 
 
27
  WORKDIR /app
28
  COPY . /app
29
 
30
+ # Install Python dependencies (including Uvicorn)
31
+ RUN pip install --no-cache-dir --upgrade pip && pip install uvicorn fastapi
32
+
33
  # Expose ports
34
  EXPOSE 3000 7860
35