- FROM mysql:5.7
- ENV AUTO_RUN_DIR /docker-entrypoint-initdb.d
- COPY ./1_cofortest_db.sql $AUTO_RUN_DIR/
- COPY ./2_cofortest_structure_and_initdata.sql $AUTO_RUN_DIR/
- COPY ./3_mooctest_user_structure_and_initdata.sql $AUTO_RUN_DIR/
- RUN chmod -R 777 $AUTO_RUN_DIR/
|