Created
March 9, 2024 00:38
-
-
Save linuxd3v/a31967df491530448ca6ec559879550b to your computer and use it in GitHub Desktop.
sequitur-g2p
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 ubuntu:20.04 | |
RUN apt-get -yqq update && apt-get install -yqq g++ libopenblas-dev libopenblas-base swig git python-dev python3-pip python3-venv libblas-dev liblapack-dev libatlas-base-dev gfortran | |
RUN mkdir /app | |
WORKDIR /app | |
RUN python3 -m venv .venv && . .venv/bin/activate | |
RUN pip3 install numpy==1.17.4 six==1.11.0 | |
RUN pip3 install git+https://github.com/sequitur-g2p/sequitur-g2p@master | |
CMD ["g2p.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment