File size: 473 Bytes
523c068
 
cb7ca8d
67271f8
a8ef47c
3982fa3
655aa3a
3982fa3
523c068
67b914f
1e9f280
f35d9ea
c13b1e1
fd0457b
12567f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.9
RUN chmod 777 -R /root
WORKDIR /
#RUN chmod 777 -R /
#pwease
RUN apt update -y && apt upgrade -y
RUN apt-get install -y nodejs npm
RUN apt install python3 -y && apt install python3-pip -y
RUN pip3 install flask --break-system-packages
RUN git clone https://github.com/JohanChungus/Status
RUN mv -v /Status/* /
RUN cd Status && pip install -r requirements.txt && npm install koa-monitor --save && npm install
COPY . .
EXPOSE 7860
CMD ["python3", "status.py"]