10 lines
275 B
Docker
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"]
|