You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Instala o Python e as ferramentas de desenvolvimento
RUN apt-get install -y python3.8 python3-pip python3-dev build-essential
# Instala o MySQL
RUN apt-get install -y mysql-server mysql-client
# Cria um banco de dados e concede privilégios ao usuário
RUN service mysql start && mysql -u root -e "CREATE DATABASE DB_MCTest;" && mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'ufabc12345 WITH GRANT OPTION;"
# Copia os arquivos do projeto Django para a imagem