dantts / Dockerfile
imseldrith's picture
Update Dockerfile
6bda1de verified
raw
history blame
304 Bytes
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"]