Próbuję utworzyć kontener z bazą danych MySQL i dodać schemat do tej bazy danych. Mój obecny plik Dockerfile to: FROM mysql MAINTAINER (me) <email> # Copy the database schema to the /data directory COPY files/epcis_schema.sql /data/epcis_schema.sql # Change the working directory WORKDIR...