1
0
mirror of https://github.com/jtesta/ssh-audit.git synced 2025-01-08 13:55:27 +01:00
ssh-audit/Dockerfile

11 lines
119 B
Docker
Raw Normal View History

2021-02-02 19:25:52 +01:00
FROM python:3.9-slim
WORKDIR /
COPY ssh-audit.py .
COPY src/ .
ENTRYPOINT ["python3", "/ssh-audit.py"]
EXPOSE 2222