From 38328a4cd037f7be4b9d409ca5d8ee31c8eb77ad Mon Sep 17 00:00:00 2001 From: peperoncino <2wua4nlyi@gmail.com> Date: Fri, 24 Feb 2023 03:57:35 +0900 Subject: [PATCH] https://github.com/python-poetry/poetry/issues/1227 --- jobs/hello-world/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/hello-world/Dockerfile b/jobs/hello-world/Dockerfile index 84915bd..5110b27 100644 --- a/jobs/hello-world/Dockerfile +++ b/jobs/hello-world/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app RUN pip install -U pip RUN pip install poetry RUN poetry config virtualenvs.create false -RUN poetry install +RUN poetry install --no-root RUN rm -rf ~/.cache CMD [ "python", "main.py"]