Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 lines
377B

  1. FROM debian:buster
  2. # Install dependencies
  3. RUN apt-get update \
  4. && apt-get install -y --no-install-recommends \
  5. openssh-server openssl \
  6. && rm -rf /var/lib/apt/lists/*
  7. COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
  8. RUN chmod 755 /usr/local/bin/docker-entrypoint.sh
  9. ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
  10. CMD ["/usr/sbin/sshd", "-D"]