Add bash dependency to redis e2e image

This commit is contained in:
Johannes M. Scheuermann 2019-02-27 11:02:03 +01:00
parent 076af3d1b5
commit cf171f43eb
4 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ FROM BASEIMAGE
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
# TODO: just use standard redis when there is one for 3.2.0.
RUN clean-install wget make gcc libc-dev
RUN clean-install wget make gcc libc-dev bash
# See README.md
RUN wget -qO /redis-3.2.0.tar.gz http://download.redis.io/releases/redis-3.2.0.tar.gz && \
@ -37,4 +37,4 @@ ADD on-start.sh /
COPY peer-finder /
ADD install.sh /
RUN chmod -c 755 /install.sh /on-start.sh /peer-finder
Entrypoint ["/install.sh"]
ENTRYPOINT ["/install.sh"]

View File

@ -1 +1 @@
1.2
1.3

View File

@ -1,4 +1,4 @@
#! /bin/bash
#!/bin/bash
# Copyright 2016 The Kubernetes Authors.
#

View File

@ -30,4 +30,4 @@ RUN wget -q -O /zookeeper-3.5.0-alpha.tar.gz http://archive.apache.org/dist/zook
ADD install.sh /
RUN chmod -c 755 /install.sh /on-start.sh /peer-finder
Entrypoint ["/install.sh"]
ENTRYPOINT ["/install.sh"]