added mariadb dev images

This commit is contained in:
2024-12-24 03:37:47 +01:00
parent d95e88ea94
commit a110f5b89a
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM almalinux:9
COPY repo /etc/yum.repos.d/MariaDB.repo
RUN yum update -y
RUN yum install MariaDB-server MariaDB-client -y
RUN /bin/rm -R /var/lib/mysql/*
ENTRYPOINT ["/bin/bash","-c"]
CMD ["sleep infinity"]