fixed bug

this one should work tho...
This commit is contained in:
Drew Thomasson
2024-12-27 23:35:33 -05:00
committed by GitHub
parent f717dc723a
commit 8f8b5afd4e

View File

@@ -37,7 +37,7 @@ ENV PATH=/opt/conda/bin:$PATH
RUN conda create -n ebookenv python=3.12 -y
# Clone the ebook2audiobookXTTS repository
RUN git clone https://github.com/DrewThomasson/ebook2audiobook.git .
RUN git clone https://github.com/DrewThomasson/ebook2audiobook.git
# Set the working directory in the container
WORKDIR /ebook2audiobook
@@ -57,3 +57,6 @@ EXPOSE 7860
# Set the command to run your GUI application using the conda environment
CMD ["conda", "run", "--no-capture-output", "-n", "ebookenv", "python", "app.py"]
# Build with this command
# docker build --no-cache --platform linux/amd64 -t ebook2audiobook .