You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 satır
386B

  1. FROM BASE_IMAGE_PLACEHOLDER
  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"]