update
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -4,9 +4,8 @@ WORKDIR /code
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
-
RUN pip install
|
8 |
|
9 |
-
COPY ./static /code/static
|
10 |
COPY . .
|
11 |
|
12 |
# Expose the port on which the application will run
|
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
+
RUN pip install -r /code/requirements.txt
|
8 |
|
|
|
9 |
COPY . .
|
10 |
|
11 |
# Expose the port on which the application will run
|