| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y --no-install-recommends openssh-server sudo ca-certificates && rm -rf /var/lib/apt/lists/* && useradd -m -s /bin/bash audit && install -d -m 700 -o audit -g audit /home/audit/.ssh && echo 'audit ALL=(root) NOPASSWD: /usr/sbin/sshd -T' > /etc/sudoers.d/audit && chmod 440 /etc/sudoers.d/audit && mkdir -p /run/sshd # buildkit |
| COPY entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/entrypoint.sh # buildkit |
| EXPOSE [22/tcp] |
| ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |