Spaces:
Sleeping
Sleeping
# syntax=docker/dockerfile:1 | |
FROM python:3.8 | |
RUN apt-get update && apt-get install -y portaudio19-dev | |
RUN apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 | |
WORKDIR /app | |
COPY requirements.txt requirements.txt | |
RUN pip3 install -r requirements.txt | |
RUN git clone https://github.com/leiretedcas/Quirohelp-docker | |
COPY . . | |
EXPOSE 5000 | |
CMD [ "python", "app.py", "--host", "0.0.0.0", "--port", "7860"] |