From d473094f6752cdc343aee0fd1fa29299bea7b496 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Fri, 9 Aug 2024 21:52:15 +0200 Subject: [PATCH] Fix --- docker/build.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build.dockerfile b/docker/build.dockerfile index 4c6ddad..63af662 100644 --- a/docker/build.dockerfile +++ b/docker/build.dockerfile @@ -6,7 +6,7 @@ WORKDIR /opt/venv RUN python -m venv /opt/venv && /opt/venv/bin/pip install --upgrade pip && /opt/venv/bin/pip install --no-cache-dir httpx poetry COPY ./pyproject.toml ./poetry.lock ./ -RUN --mount=type=ssh /opt/venv/bin/poetry export --without-hashes --with app ${POETRY_EXPORT_EXTRA_ARGS} > requirements.txt \ +RUN --mount=type=ssh /opt/venv/bin/poetry export --without-hashes ${POETRY_EXPORT_EXTRA_ARGS} > requirements.txt \ && /opt/venv/bin/pip install --no-cache-dir -r requirements.txt