Spaces:
Build error
Build error
Update DOCKERFILE
Browse files- DOCKERFILE +3 -1
DOCKERFILE
CHANGED
|
@@ -20,8 +20,10 @@ ENV PATH="/root/.cargo/bin:${PATH}"
|
|
| 20 |
# Set up the working directory
|
| 21 |
WORKDIR /home/user/app
|
| 22 |
|
| 23 |
-
#
|
| 24 |
COPY requirements.txt /tmp/requirements.txt
|
|
|
|
|
|
|
| 25 |
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
| 26 |
|
| 27 |
# Copy the application files
|
|
|
|
| 20 |
# Set up the working directory
|
| 21 |
WORKDIR /home/user/app
|
| 22 |
|
| 23 |
+
# Copy the requirements.txt file
|
| 24 |
COPY requirements.txt /tmp/requirements.txt
|
| 25 |
+
|
| 26 |
+
# Install Python dependencies
|
| 27 |
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
| 28 |
|
| 29 |
# Copy the application files
|