Files
Pennyw0rth-NetExec/Dockerfile
T
2020-09-20 09:23:16 -06:00

16 lines
266 B
Docker

FROM python:3.8-slim
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
ENV PIP_NO_CACHE_DIR=off
WORKDIR /usr/src/crackmapexec
RUN apt-get update && \
apt-get install -y libffi-dev libxml2-dev libxslt-dev libssl-dev openssl
COPY . .
RUN pip install .
ENTRYPOINT [ "cme" ]