acapellify / Dockerfile
1lint
init commit
517cc63
FROM python:3.10.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN sudo apt install ffmpeg
COPY . .
CMD ["python", "app.py"]