Added support for building official docker images. (#76)

This commit is contained in:
Joe Testa
2020-10-20 11:31:50 -04:00
parent 83d8014a50
commit 17780ff194
5 changed files with 44 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.8-slim
WORKDIR /
COPY ssh-audit.py .
COPY src/ .
ENTRYPOINT ["python3", "/ssh-audit.py"]
EXPOSE 2222