Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ WORKDIR /app
|
|
5 |
# Install build dependencies (if any are needed by pip packages)
|
6 |
# Remove build dependencies afterward if minimizing size is critical
|
7 |
COPY requirements.txt .
|
8 |
-
RUN pip install
|
9 |
|
10 |
# Copy application code
|
11 |
COPY . .
|
|
|
5 |
# Install build dependencies (if any are needed by pip packages)
|
6 |
# Remove build dependencies afterward if minimizing size is critical
|
7 |
COPY requirements.txt .
|
8 |
+
RUN pip install -r requirements.txt
|
9 |
|
10 |
# Copy application code
|
11 |
COPY . .
|