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.
This commit is contained in:
Kaszanas 2023-11-18 17:33:42 +01:00
parent 59bba20069
commit 808fa49952
1 changed files with 2 additions and 1 deletions

View File

@ -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"]