File size: 304 Bytes
43a8e28
c461fcc
43a8e28
c461fcc
43a8e28
c461fcc
43a8e28
 
c461fcc
43a8e28
c461fcc
6bda1de
 
c461fcc
43a8e28
c461fcc
6bda1de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM continuumio/miniconda3

RUN apt update && apt install espeak-ng ffmpeg -y

WORKDIR /root

ADD ./requirements.txt .
RUN pip install -r requirements.txt

ADD ./src .

# Ensure all files have appropriate permissions
RUN chmod -R 755 /root

RUN python -m nltk.downloader punkt

CMD ["python", "main.py"]