Created
October 25, 2020 06:58
-
-
Save jordic/ce7c90d68e3a9bcb9676f392cc853030 to your computer and use it in GitHub Desktop.
CatotronCPU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7.3 | |
# based on a git clone from https://github.com/CollectivaT-dev/catotron-cpu | |
# plus embedding voices. | |
# also fixed requirements.txt | |
# -matplotlib==2.1.0 | |
# +numba==0.48 | |
# +matplotlib==3.3.2 | |
# numpy==1.18.0 | |
# inflect==0.2.5 | |
# librosa==0.6.0 | |
# @@ -7,7 +8,7 @@ tensorboardX==1.1 | |
# Unidecode==1.0.22 | |
# pillow | |
# pyaml==19.12.0 | |
# -apex | |
# +apex==0.9.10.dev0 | |
# tensorflow==1.15.0 | |
# torch==1.3.1 | |
# falcon==2.0.0 | |
WORKDIR /app | |
COPY . /app/ | |
RUN pip install --no-cache-dir -U pip && \ | |
pip install --no-cache-dir -r requirements.txt | |
ENTRYPOINT ["python", "demo_server.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment