Skip to content

Instantly share code, notes, and snippets.

@akki2825
Last active March 2, 2024 19:50
Show Gist options
  • Save akki2825/27728409792390afb808c3a1f5bd49fa to your computer and use it in GitHub Desktop.
Save akki2825/27728409792390afb808c3a1f5bd49fa to your computer and use it in GitHub Desktop.
mfa_dockerfile
## This is a Dockerfile that installs MFA v1.0.1
FROM ubuntu:18.04
RUN apt update
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt install python3.6 -y
RUN apt install wget -y
RUN echo "deb http://gb.archive.ubuntu.com/ubuntu/ bionic main universe" >> /etc/apt/sources.list
RUN apt install g++-6 -y
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 6
RUN apt install libgfortran3 -y
RUN wget https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner/releases/download/v1.0.1/montreal-forced-aligner_linux.tar.gz && tar -xvf montreal-forced-aligner_linux.tar.gz
RUN cd /montreal-forced-aligner/lib && cp libpython3.6m.so.1.0 libpython3.6m.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment