Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
|
10 |
# Set the working directory
|
11 |
WORKDIR /app
|
12 |
|
13 |
-
# Copy requirements and install
|
14 |
COPY requirements.txt .
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
|
|
10 |
# Set the working directory
|
11 |
WORKDIR /app
|
12 |
|
13 |
+
# Copy requirements.txt and install dependencies
|
14 |
COPY requirements.txt .
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|