Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jcolekaplan committed Aug 30, 2023
1 parent ffc1b27 commit 634cecd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/Dockerfile-screener
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,13 @@ EXPOSE 28015
# Install MySQL Database
ENV DEBIAN_FRONTEND="noninteractive"
RUN wget http://repo.mysql.com/mysql-apt-config_0.8.23-1_all.deb
RUN wget https://r.mariadb.com/downloads/mariadb_repo_setup
RUN apt update
RUN apt install -y lsb-base lsb-release ./mysql-apt-config_0.8.23-1_all.deb
RUN apt install -y mariadb-server mariadb-client

RUN apt install -y software-properties-common
RUN apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
RUN add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mariadb.mirror.liquidtelecom.com/repo/10.6/ubuntu focal main'
RUN apt update && sudo apt install -y mariadb-server mariadb-client
VOLUME ["/etc/mysql", "/var/lib/mysql"]
EXPOSE 3306

Expand Down

0 comments on commit 634cecd

Please sign in to comment.