FROM debian:stable RUN apt update -y RUN apt upgrade -y RUN apt install mariadb-client -y RUN apt install bash -y COPY console.sh /root RUN chmod a+x /root/console.sh ENTRYPOINT ["/root/console.sh"]