Skip to content

Commit

Permalink
Update MySQL
Browse files Browse the repository at this point in the history
Updated MySQL version and added vim/nano.
  • Loading branch information
andreipa committed Mar 18, 2020
1 parent dc8819e commit e1019e9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions bin/mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
FROM mysql:8.0.16
#COPY ./init.sql /docker-entrypoint-initdb.d
FROM mysql:8.0.19

# Update and upgrade the system
RUN apt-get update && apt-get upgrade -y --no-install-recommends apt-utils
RUN apt-get update && apt-get upgrade -y --no-install-recommends apt-utils

# Additional utilities
RUN apt-get update && apt-get install -y \
nano \
vim \
&& rm -rf /var/lib/apt/lists/*

#Init db schema
#COPY ./init.sql /docker-entrypoint-initdb.d/

0 comments on commit e1019e9

Please sign in to comment.