Codebase list pywerview / run/74d76bc5-3d28-4cbf-bb6d-38b4409be82f/main Dockerfile
run/74d76bc5-3d28-4cbf-bb6d-38b4409be82f/main

Tree @run/74d76bc5-3d28-4cbf-bb6d-38b4409be82f/main (Download .tar.gz)

Dockerfile @run/74d76bc5-3d28-4cbf-bb6d-38b4409be82f/mainraw · history · blame

FROM ubuntu:jammy

RUN apt update && apt install -y python3 python3-pip libkrb5-dev

COPY . /app/
WORKDIR /app/

RUN pip3 install -r requirements.txt
# We need to manually install dsinternals (https://github.com/SecureAuthCorp/impacket/pull/1320)
RUN pip3 install dsinternals
RUN python3 setup.py install

ENTRYPOINT ["/usr/local/bin/pywerview"]