Skip to content

Commit cdf9c3e

Browse files
committed
Make packagable for client tests
1 parent 8e56701 commit cdf9c3e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ WORKDIR $PYSETUP_PATH
6060
COPY poetry.lock pyproject.toml ./
6161

6262
# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
63-
RUN poetry install --without dev
63+
RUN poetry install --without dev --no-root
6464

6565

6666
# `development` image is used during development / testing
@@ -73,7 +73,7 @@ COPY --from=builder-base $POETRY_HOME $POETRY_HOME
7373
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
7474

7575
# quicker install as runtime deps are already installed
76-
RUN poetry install
76+
RUN poetry install --no-root
7777

7878
# Install requirements for end-to-end testing
7979
RUN playwright install --with-deps chromium

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ dynamic = ["dependencies", "version"]
99

1010
[tool.poetry]
1111
version = "0.0.0"
12-
package-mode = false
1312

1413
[tool.poetry.dependencies]
1514
adit-radis-shared = { git = "https://github.com/openradx/adit-radis-shared.git", tag = "0.13.1" }

0 commit comments

Comments
 (0)