File size: 300 Bytes
c6582f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3

ADD requirements.txt requirements.txt

RUN apt-get update && apt-get install -y \
    net-tools \
    iputils-ping \
    curl \
    && rm -rf /var/lib/apt/lists/*

RUN pip install -r requirements.txt
RUN mkdir /home/project

EXPOSE 7860

WORKDIR /home/project

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