mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 21:45:39 +01:00
6f39407a8c
Signed-off-by: Daniel Thamdrup <dallemon@protonmail.com>
25 lines
603 B
Docker
25 lines
603 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM scratch AS files
|
|
|
|
# Copy ssh-audit code to temporary container
|
|
COPY ssh-audit.py /
|
|
COPY src/ /
|
|
|
|
FROM python:3-alpine AS runtime
|
|
|
|
# Update the image to remediate any vulnerabilities.
|
|
RUN apk upgrade -U --no-cache -a -l && \
|
|
# Remove suid & sgid bits from all files.
|
|
find / -xdev -perm /6000 -exec chmod ug-s {} \; 2> /dev/null || true
|
|
|
|
# Copy the ssh-audit code from files container.
|
|
COPY --from=files / /
|
|
|
|
# Allow listening on 2222/tcp for client auditing.
|
|
EXPOSE 2222
|
|
|
|
# Drop root privileges.
|
|
USER nobody:nogroup
|
|
|
|
ENTRYPOINT ["python3", "/ssh-audit.py"]
|