-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
@ #78 | should make sure xtrabackup has "ncat" installed
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,20 @@ ARG DEBIAN_VERSION=stretch | |
|
||
FROM debian:$DEBIAN_VERSION | ||
|
||
# An ARG declared before the FROM instruction can’t be used after the FROM | ||
ARG DEBIAN_VERSION | ||
|
||
LABEL authors="hoatle <[email protected]>" | ||
|
||
# default percona-xtrabackup-80; other possible values: percona-xtrabackup, percona-xtrabackup-24 | ||
ARG XTRABACKUP_PACKAGE=percona-xtrabackup-80 | ||
|
||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --force-yes \ | ||
apt-transport-https ca-certificates mariadb-client nmap gnupg lsb-release \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
apt-transport-https ca-certificates mariadb-client gnupg lsb-release | ||
|
||
RUN if [ "$DEBIAN_VERSION" = "buster" ] ; then apt-get install -y ncat ; else apt-get install -y nmap ; fi | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9334A25F8507EFA5 | ||
|
||
|