Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -40,6 +40,8 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
|
|
| 40 |
|
| 41 |
# Create a working directory
|
| 42 |
WORKDIR /app
|
|
|
|
|
|
|
| 43 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 44 |
|
| 45 |
# Create a non-root user and switch to it
|
|
|
|
| 40 |
|
| 41 |
# Create a working directory
|
| 42 |
WORKDIR /app
|
| 43 |
+
COPY ./requirements.txt /app/requirements.txt
|
| 44 |
+
|
| 45 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 46 |
|
| 47 |
# Create a non-root user and switch to it
|