5 lines
131 B
Docker
5 lines
131 B
Docker
FROM mysql:8.0
|
|
|
|
# Copy the initialization SQL script into the container
|
|
COPY ./init-db.sql /docker-entrypoint-initdb.d/init-db.sql
|