Sha256: cb8a7f50d126b75f1f5a2f81a6b17ea965c037c54b999e1bf710a3963558cad1

Contents?: true

Size: 482 Bytes

Versions: 92

Compression:

Stored size: 482 Bytes

Contents

# syntax=docker/dockerfile:1
FROM debian:buster

RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
# Activate root login with test password
RUN echo 'root:root_pwd' | chpasswd
RUN sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
# Speed-up considerably ssh performance and avoid huge lags and timeouts without DNS
RUN sed -i 's/#UseDNS yes/UseDNS no/' /etc/ssh/sshd_config
EXPOSE 22

CMD ["/usr/sbin/sshd", "-D"]

Version data entries

92 entries across 46 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-33.0.1 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-33.0.1 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-33.0.0 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-33.0.0 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.18.0 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.18.0 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.17.1 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.17.1 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.17.0 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.17.0 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.4 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.4 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.3 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.3 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.2 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.2 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.1 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.1 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.0 examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
hybrid_platforms_conductor-32.16.0 examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile