Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
-
|
|
|
|
|
|
|
4 |
|
5 |
-
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
-
RUN pip install --no-cache-dir --upgrade -r /
|
8 |
|
9 |
COPY . .
|
10 |
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
COPY . .
|
4 |
+
|
5 |
+
# Set the working directory to /
|
6 |
+
WORKDIR /
|
7 |
|
|
|
8 |
|
9 |
+
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
10 |
|
11 |
COPY . .
|
12 |
|