You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN yum -y update && yum install -y cmake3 make gcc-c++ ncurses-devel openssl-devel python-devel wget tar gzip which zip
8
+
9
+
RUN wget -q https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-${VERSION}.tar.gz
10
+
11
+
RUN tar xzf mysql-${VERSION}.tar.gz
12
+
RUN cd mysql-${VERSION}; mkdir build; cd build; cmake3 .. -DCMAKE_INSTALL_PREFIX=/opt -DWITHOUT_SERVER=ON-DDOWNLOAD_BOOST=ON-DWITH_BOOST=/root/boost && make install
13
+
14
+
RUN cp /usr/lib64/libncurses.so.6/usr/lib64/libtinfo.so.6/opt/lib/
15
+
RUN cd /opt; strip bin/* lib/*; rm lib/*.a; zip -9r /root/mysql-${VERSION}-layer.zip bin lib share
0 commit comments