From 2c995638ceb8e8ce11302cc41e46a31b1777b254 Mon Sep 17 00:00:00 2001 From: daavoo Date: Tue, 10 Dec 2024 13:08:10 +0100 Subject: [PATCH] Don't install on editable mode --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 251cab9..0a757e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ WORKDIR /home/appuser/document-to-podcast RUN virtualenv ${VIRTUAL_ENV} RUN . ${VIRTUAL_ENV}/bin/activate && pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu -RUN . ${VIRTUAL_ENV}/bin/activate && pip install -e /home/appuser/document-to-podcast +RUN . ${VIRTUAL_ENV}/bin/activate && pip install /home/appuser/document-to-podcast RUN . ${VIRTUAL_ENV}/bin/activate && python demo/download_models.py EXPOSE 8501