We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e24096 commit fe8694aCopy full SHA for fe8694a
Dockerfile
@@ -11,11 +11,13 @@ RUN curl -sSL https://install.python-poetry.org | python3 -
11
12
# Install dependencies
13
WORKDIR /app
14
+
15
COPY poetry.lock pyproject.toml /app/
-RUN poetry config virtualenvs.create false --local && poetry install --no-interaction --no-ansi
16
17
COPY todo_app /app/todo_app
18
19
+RUN poetry config virtualenvs.create false --local && poetry install --no-interaction --no-ansi
20
21
EXPOSE 8000
22
23
FROM base AS test
0 commit comments