From 6a6651601a7e0468d18755af06ab47f513b67dd5 Mon Sep 17 00:00:00 2001 From: Andrey Danilov Date: Tue, 21 May 2024 08:38:51 +0300 Subject: [PATCH] Fix installation with `poetry` --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d4df50..143d9b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,11 +26,10 @@ RUN pip install "poetry==1.7.1" COPY ./pyproject.toml . COPY ./README.md . +COPY ./rvc ./rvc RUN poetry install -COPY ./rvc ./rvc - COPY ./.env-docker ./.env CMD [ "poetry", "run", "poe", "rvc-api" ]