Spaces:
Sleeping
Sleeping
build(docker): poetry install
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -4,6 +4,8 @@ WORKDIR /code
|
|
4 |
COPY pyproject.toml .
|
5 |
COPY poetry.lock .
|
6 |
|
7 |
-
RUN poetry install -
|
8 |
|
9 |
-
COPY . .
|
|
|
|
|
|
4 |
COPY pyproject.toml .
|
5 |
COPY poetry.lock .
|
6 |
|
7 |
+
RUN poetry install -vv --no-root
|
8 |
|
9 |
+
COPY . .
|
10 |
+
# second time since --no-root was used
|
11 |
+
RUN poetry install
|