mirror of
https://gitee.com/NexIoT/Universal-IoT-Java.git
synced 2026-08-30 22:09:26 +08:00
8 lines
161 B
Docker
8 lines
161 B
Docker
FROM mysql:8.0
|
|
|
|
# 复制初始化 SQL 文件到容器
|
|
COPY init/*.sql /docker-entrypoint-initdb.d/
|
|
|
|
# 设置权限
|
|
RUN chmod -R 755 /docker-entrypoint-initdb.d/
|