Skip to content

Commit cf171f4

Browse files
committed
Add bash dependency to redis e2e image
1 parent 076af3d commit cf171f4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

test/images/pets/redis-installer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM BASEIMAGE
1919
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
2020

2121
# TODO: just use standard redis when there is one for 3.2.0.
22-
RUN clean-install wget make gcc libc-dev
22+
RUN clean-install wget make gcc libc-dev bash
2323

2424
# See README.md
2525
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 /
3737
COPY peer-finder /
3838
ADD install.sh /
3939
RUN chmod -c 755 /install.sh /on-start.sh /peer-finder
40-
Entrypoint ["/install.sh"]
40+
ENTRYPOINT ["/install.sh"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2
1+
1.3

test/images/pets/redis-installer/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/bin/bash
22

33
# Copyright 2016 The Kubernetes Authors.
44
#

test/images/pets/zookeeper-installer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ RUN wget -q -O /zookeeper-3.5.0-alpha.tar.gz http://archive.apache.org/dist/zook
3030

3131
ADD install.sh /
3232
RUN chmod -c 755 /install.sh /on-start.sh /peer-finder
33-
Entrypoint ["/install.sh"]
33+
ENTRYPOINT ["/install.sh"]

0 commit comments

Comments
 (0)