1 2 3 4 5 6 7 8 9 10
FROM python:3.9-slim WORKDIR / COPY ssh-audit.py . COPY src/ . ENTRYPOINT ["python3", "/ssh-audit.py"] EXPOSE 2222