File size: 445 Bytes
5ed19b3
 
 
 
43e871e
c76fb0e
5ed19b3
 
 
 
 
 
d23ba37
ade9c56
5ed19b3
 
 
9b51b02
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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"]