ccoreilly's picture
update app
7514dcc
raw
history blame
539 Bytes
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"]