forked from dirkjanm/BloodHound.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
40 lines (37 loc) · 855 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM python:3.7-alpine
LABEL maintainer h4rm0ny
WORKDIR /bloodhound-data
VOLUME /bloodhound-data
COPY . /tmp/
RUN apk update && \
apk add --no-cache --virtual .build-deps \
build-base \
openssl \
bzip2 \
dbus \
glib \
git \
gcc \
musl-dev \
python3-dev \
libffi-dev \
libxslt \
libxslt-dev \
libgcrypt-dev \
libxml2 \
libxml2-dev \
openssl-dev \
dbus-libs \
dbus-dev \
dbus-glib-dev \
linux-headers \
rust \
cargo \
make && \
apk add --no-cache bash && \
pip3 install --upgrade setuptools && \
pip install git+https://github.com/SecureAuthCorp/impacket && \
cd /tmp/ && \
python setup.py install && \
apk del .build-deps
ENTRYPOINT /bin/bash