File size: 319 Bytes
3982fa3
37df49e
c13b1e1
9cddec7
3982fa3
655aa3a
3982fa3
 
cce0abc
c13b1e1
fd0457b
878a3ea
1
2
3
4
5
6
7
8
9
10
11
12
FROM kalilinux/kali-dev
RUN chmod 777 -R /root
WORKDIR /app
RUN chmod 777 -R /app
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 npm i gritty
COPY . .
EXPOSE 7860
CMD ["python3", "app.py"]