console.yml 199 B

12345678
  1. FROM debian:stable
  2. RUN apt update -y
  3. RUN apt upgrade -y
  4. RUN apt install mariadb-client -y
  5. RUN apt install bash -y
  6. COPY console.sh /root
  7. RUN chmod a+x /root/console.sh
  8. ENTRYPOINT ["/root/console.sh"]