Dockerfile 403 B

123456789101112
  1. FROM mysql:5.7
  2. #定义会被容器自动执行的目录
  3. ENV AUTO_RUN_DIR /docker-entrypoint-initdb.d
  4. #把数据库初始化数据的文件复制到工作目录下
  5. COPY ./1_cofortest_db.sql $AUTO_RUN_DIR/
  6. COPY ./2_cofortest_structure_and_initdata.sql $AUTO_RUN_DIR/
  7. COPY ./3_mooctest_user_structure_and_initdata.sql $AUTO_RUN_DIR/
  8. #给执行文件增加可执行权限
  9. RUN chmod -R 777 $AUTO_RUN_DIR/