change Dockerfile

This commit is contained in:
whaffman 2025-05-20 12:12:38 +02:00
parent 8f16f647b0
commit 51ebedd83a

View File

@ -25,8 +25,8 @@ RUN mkdir -p /var/run/mysqld && \
# and starting the MariaDB server
# The configuration file will be used to set the server settings
# The init.sql file will be executed when the container is started for the first time
COPY ./docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ./my.cnf /etc/my.cnf
COPY ./tools/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ./conf/my.cnf /etc/my.cnf
# COPY ./init.sql /usr/local/bin/init.sql
RUN chmod +x /usr/local/bin/docker-entrypoint.sh