feat: add app files

This commit is contained in:
Lenoctambule
2026-04-02 12:04:23 +02:00
parent e3f5cf6a1e
commit f8a48ee181
13 changed files with 524 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM debian:bullseye
RUN apt update -y && apt upgrade -y
RUN apt install mariadb-common mariadb-server mariadb-client -y
ADD ./conf/config.cnf /etc/mysql/my.cnf
RUN mkdir /var/run/mysqld
RUN chmod 777 /var/run/mysqld
ADD ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 3306
ENTRYPOINT /entrypoint.sh