k8s/test/Dockerfile
2023-06-04 18:35:04 +02:00

10 lines
275 B
Docker

FROM python:3.11-slim
RUN apt-get update \
&& apt-get install -y \
ssh \
sudo \
&& rm -rf /var/lib/apt/lists/*
RUN passwd -d root
COPY sshd_config /etc/ssh/
CMD ["sh", "-c", "/etc/init.d/ssh start && sleep infinity"]