mysql / Dockerfile
huiiz's picture
1
3a9410c
raw
history blame contribute delete
282 Bytes
FROM ubuntu/mysql
ENV TZ=UTC
ENV MYSQL_ROOT_PASSWORD=123456
ENV MYSQL_ONETIME_PASSWORD=no
RUN apt-get upgrade
RUN apt-get update
RUN apt-get install -y phpmyadmin
RUN apt-get install -y python3 python3-pip
WORKDIR /code
COPY . .
# RUN mysql -u root -p
CMD python3 -m http.server