Sha256: 556652754b43b3e4d66bac58741d953fb4c6cc7b0488dafc272b3b12b23794db

Contents?: true

Size: 660 Bytes

Versions: 46

Compression:

Stored size: 660 Bytes

Contents

# syntax=docker/dockerfile:1
# Pull the image containing Go
FROM debian:buster

# Install sshd
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
# Activate root login
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

# Upload our root key for key authentication of root
COPY hpc_root.key.pub /root/.ssh/authorized_keys
RUN chmod 700 /root/.ssh
RUN chmod 400 /root/.ssh/authorized_keys

# Startup command
CMD ["/usr/sbin/sshd", "-D"]

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-33.2.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.2.3 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.2.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.2.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.2.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.1.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.1.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.0.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.0.3 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.0.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.0.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.0.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.18.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.17.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.17.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.16.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.16.3 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.16.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.16.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-32.16.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile