Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
|