File size: 466 Bytes
97171a0
 
 
 
 
 
 
 
 
 
 
9e05e3e
 
97171a0
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile

FROM python:3.9

RUN apt-get update && apt-get upgrade -y && \
    apt-get install -y wget qemu-system-x86

WORKDIR /app

COPY . .
 
RUN wget -O kali-linux.iso https://old.kali.org/kali-images/kali-2024.4/kali-linux-2024.4-installer-netinst-amd64.iso && chmod +rwx kali-linux.iso && ls -a

EXPOSE 7860 5900

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