8 lines
294 B
Docker
8 lines
294 B
Docker
FROM centos:7
|
|
RUN yum update -y && yum install -y \
|
|
https://dev.mysql.com/get/Downloads/MySQL-Cluster-8.0/mysql-cluster-community-server-minimal-8.0.23-1.el7.x86_64.rpm \
|
|
&& yum clean all
|
|
COPY docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|