From 5e3e38354fd29941548624205c68d3aba496f8e4 Mon Sep 17 00:00:00 2001 From: Dan Yishai Date: Sun, 18 Aug 2024 00:47:16 +0300 Subject: [PATCH] Fixed Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 75ebed7..b97e9a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,14 +12,13 @@ WORKDIR /tmp # Setup python RUN pip install --upgrade pip -RUN pip install poetry -RUN poetry self add poetry-plugin-export +RUN pip install poetry poetry-plugin-export COPY ./pyproject.toml ./poetry.lock* /tmp/ ARG VARIANT=regular RUN if [ $VARIANT = "all" ]; then \ - poetry export -f requirements.txt --output requirements.txt --with full; \ + poetry export -f requirements.txt --output requirements.txt --with all; \ else \ poetry export -f requirements.txt --output requirements.txt; \ fi