Skip to content

Commit

Permalink
Merge branch 'gvvs'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Speckmaier committed Dec 5, 2017
2 parents 5850d88 + ef4032f commit e2b8bd9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
FROM martinhelmich/xtrabackup
COPY entrypoint /usr/local/bin/entrypoint
RUN chmod +x /usr/local/bin/entrypoint && \
apt-get update && apt-get -y install \
curl \
FROM debian:stretch

COPY percona-xtrabackup-24_2.4.9-1.stretch_amd64.deb /tmp/percona-xtrabackup.deb
RUN apt-get update && apt-get -y install curl lsb-release \
libdbd-mysql-perl rsync libaio1 libev4 libnuma1\
&& dpkg -i /tmp/percona-xtrabackup.deb && rm -Rf /tmp/percona-xtrabackup.deb \
&& rm -rf /var/lib/apt/lists/*

COPY entrypoint /usr/local/bin/entrypoint
RUN chmod +x /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
Binary file added percona-xtrabackup-24_2.4.9-1.stretch_amd64.deb
Binary file not shown.

0 comments on commit e2b8bd9

Please sign in to comment.