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.9.5 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.9.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.9.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.9.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.9.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.8.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.8.3 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.8.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.8.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.8.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.7.4 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.7.3 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.7.2 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.7.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.7.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.6.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.5.1 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.5.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.4.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
hybrid_platforms_conductor-33.3.0 examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile