From 808fa4995256a3a9a97bed6c8fa8c03f82c1ab1c Mon Sep 17 00:00:00 2001 From: Kaszanas Date: Sat, 18 Nov 2023 17:33:42 +0100 Subject: [PATCH] Moved Dockerfile back to main directory Main dockerfile in a separate directory can cause issues with the current CI/CD setup. This can be a good change for later. --- dockerfiles/Dockerfile => Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename dockerfiles/Dockerfile => Dockerfile (99%) diff --git a/dockerfiles/Dockerfile b/Dockerfile similarity index 99% rename from dockerfiles/Dockerfile rename to Dockerfile index e3fcdd83..9fb3005e 100644 --- a/dockerfiles/Dockerfile +++ b/Dockerfile @@ -8,11 +8,12 @@ RUN pip3 install llvmlite --ignore-installed # Install Dependencies: RUN pip3 install torch torchaudio --extra-index-url https://download.pytorch.org/whl/cu118 RUN rm -rf /root/.cache/pip -RUN make install # Copy TTS repository contents: WORKDIR /root COPY . /root +RUN make install + ENTRYPOINT ["tts"] CMD ["--help"]