Skip to content

Commit e2b8bd9

Browse files
author
Sven Speckmaier
committed
Merge branch 'gvvs'
2 parents 5850d88 + ef4032f commit e2b8bd9

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
FROM martinhelmich/xtrabackup
2-
COPY entrypoint /usr/local/bin/entrypoint
3-
RUN chmod +x /usr/local/bin/entrypoint && \
4-
apt-get update && apt-get -y install \
5-
curl \
1+
FROM debian:stretch
2+
3+
COPY percona-xtrabackup-24_2.4.9-1.stretch_amd64.deb /tmp/percona-xtrabackup.deb
4+
RUN apt-get update && apt-get -y install curl lsb-release \
5+
libdbd-mysql-perl rsync libaio1 libev4 libnuma1\
6+
&& dpkg -i /tmp/percona-xtrabackup.deb && rm -Rf /tmp/percona-xtrabackup.deb \
67
&& rm -rf /var/lib/apt/lists/*
8+
9+
COPY entrypoint /usr/local/bin/entrypoint
10+
RUN chmod +x /usr/local/bin/entrypoint
711
ENTRYPOINT ["/usr/local/bin/entrypoint"]
5.89 MB
Binary file not shown.

0 commit comments

Comments
 (0)