From 51ebedd83ad8b65f8464696ea975e34e45b76a55 Mon Sep 17 00:00:00 2001 From: whaffman Date: Tue, 20 May 2025 12:12:38 +0200 Subject: [PATCH] change Dockerfile --- srcs/requirements/mariadb/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcs/requirements/mariadb/Dockerfile b/srcs/requirements/mariadb/Dockerfile index 7070dd3..46e724c 100644 --- a/srcs/requirements/mariadb/Dockerfile +++ b/srcs/requirements/mariadb/Dockerfile @@ -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