зеркало из https://github.com/github/vitess-gh.git
17 строки
616 B
Docker
17 строки
616 B
Docker
FROM vitess/bootstrap:common
|
|
|
|
# Install MariaDB 10.0.x
|
|
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db && \
|
|
add-apt-repository 'deb http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.0/debian jessie main' && \
|
|
apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server libmariadbclient-dev && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Bootstrap Vitess
|
|
WORKDIR /vt/src/github.com/youtube/vitess
|
|
USER vitess
|
|
# Required by e2e test dependencies e.g. test/environment.py.
|
|
ENV USER vitess
|
|
ENV MYSQL_FLAVOR MariaDB
|
|
RUN ./bootstrap.sh --skip_root_installs
|