blob: cd4f53a5bc69c835970a77a23217bc22e40791f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM archlinux
RUN pacman-key --init \
&& pacman -Syyu --needed --noconfirm git netcat python python-pip radare2 \
&& pacman -Scc --noconfirm
COPY . /sploit
RUN pip install /sploit
WORKDIR /home
ENTRYPOINT ["/sploit/docker-entry.sh"]
CMD ["--help"]
|