File size: 539 Bytes
3288e01 c5b1a1d 89cf23f c5b1a1d 7f0cc16 7f0efc6 c5b1a1d 7f0cc16 7514dcc 58b3ffd bfa1ccb 7f0cc16 7f0efc6 |
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 |
FROM python:3.9
RUN apt update && apt install -y git make autoconf automake libtool pkg-config gcc libsonic-dev ronn kramdown libpcaudio-dev
RUN git clone https://github.com/projecte-aina/espeak-ng
RUN cd espeak-ng && \
./autogen.sh && \
./configure --prefix=/usr && \
make && \
make install
COPY requirements.txt .
COPY models .
RUN pip install -r requirements.txt
COPY engine.py .
COPY app.py .
RUN mkdir -p cache && chmod 777 cache
ENV NUMBA_CACHE_DIR=./cache
ENV MPLCONFIGDIR=./cache
EXPOSE 7860
CMD ["python", "app.py"]
|