Created
July 18, 2019 01:06
-
-
Save ropnop/887383ea8539f4e528ec10ee947bbcc1 to your computer and use it in GitHub Desktop.
Impacket Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
RUN apk --update --no-cache add \ | |
zlib-dev \ | |
musl-dev \ | |
libc-dev \ | |
gcc \ | |
libffi-dev \ | |
openssl-dev && \ | |
rm -rf /var/cache/apk/* | |
RUN mkdir -p /opt/impacket | |
COPY . /opt/impacket | |
WORKDIR /opt/impacket | |
RUN pip install . | |
WORKDIR /opt/impacket/examples | |
CMD ["python"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment