Skip to content

Commit

Permalink
Run shepardtts as a module (fix relative imports)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darwinkel committed Mar 5, 2024
1 parent be598e1 commit 1b6b90d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y ffmpeg && apt-get clean && rm -rf /var/
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY shepardtts ./
COPY shepardtts ./shepardtts

USER shepardtts
CMD [ "python", "./app.py" ]
CMD [ "python", "-m", "shepardtts.app" ]

0 comments on commit 1b6b90d

Please sign in to comment.