drewThomasson commited on
Commit
8b30c86
·
verified ·
1 Parent(s): 2a65e18

Making it use the demo test branch

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -27,6 +27,9 @@ RUN git clone https://github.com/DrewThomasson/ebook2audiobook.git /home/user/eb
27
  # Set the cloned repository as the base working directory
28
  WORKDIR /home/user/ebook2audiobook
29
 
 
 
 
30
  #Install Python dependences from the ebook2audiobook repo
31
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
32
 
 
27
  # Set the cloned repository as the base working directory
28
  WORKDIR /home/user/ebook2audiobook
29
 
30
+ # Swap to the demo branch
31
+ RUN git checkout demo
32
+
33
  #Install Python dependences from the ebook2audiobook repo
34
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
35