forked from bootphon/phonemizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
49 lines (40 loc) · 1.23 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Use this file to build a docker image of phonemizer (using
# festival-2.5.0 and espeak-ng-1.50 from ubuntu repo):
#
# sudo docker build -t phonemizer .
#
# Then open a bash session in docker with:
#
# sudo docker run -it phonemizer /bin/bash
#
# You can then use phonemizer within docker. See the docker doc for
# advanced usage.
# Use an official Ubuntu as a parent image
FROM ubuntu:20.04
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
# set the working directory to /phonemizer
WORKDIR /phonemizer
# install dependencies
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
festival \
festvox-us1 \
festlex-cmu \
festlex-poslex \
espeak-ng \
git \
mbrola \
mbrola-fr1 \
python3 \
python3-pip && \
apt-get clean
# pytest needs to be installed through pip to make sure we have a recent version
RUN pip3 install pytest
# tests expect python to be available as executable 'python' not 'python3'
RUN ln -s /usr/bin/python3 /usr/bin/python
# copy the phonemizer code within the docker image
COPY . /phonemizer
# install phonemizer and run the tests
RUN cd /phonemizer && \
python3 setup.py install && \
phonemize --version && \
python3 -m pytest -v test