Spaces:
Sleeping
Sleeping
Commit
·
8847bf9
1
Parent(s):
2a03c9d
updated
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -6,7 +6,9 @@ RUN apt update && apt install -y wget && apt install -y curl
|
|
6 |
|
7 |
# Install Python dependencies
|
8 |
COPY requirements.txt .
|
9 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
10 |
|
11 |
# Copy the backend code
|
12 |
COPY . .
|
|
|
6 |
|
7 |
# Install Python dependencies
|
8 |
COPY requirements.txt .
|
9 |
+
RUN pip install --no-cache-dir -r requirements.txt && \
|
10 |
+
which uvicorn && \
|
11 |
+
uvicorn --version
|
12 |
|
13 |
# Copy the backend code
|
14 |
COPY . .
|