From e72a3497c6e7f3fb32363ea3219146529667cc39 Mon Sep 17 00:00:00 2001 From: Hongbin Lu Date: Sat, 5 Dec 2015 12:28:34 -0500 Subject: [PATCH] Fixed the Dockerfile for building redis image The Dockerfile copies a non-existent file, which fails the image building process. As a result, the built image is incomplete. This seems to be the reason why the redis example doesn't work (because the docker image kubernetes/redis:v1 is incorrectly built). --- examples/redis/image/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/redis/image/Dockerfile b/examples/redis/image/Dockerfile index c770efd8a4b..e4a1588a53a 100644 --- a/examples/redis/image/Dockerfile +++ b/examples/redis/image/Dockerfile @@ -5,7 +5,6 @@ RUN apt-get install -yy -q python COPY redis-master.conf /redis-master/redis.conf COPY redis-slave.conf /redis-slave/redis.conf COPY run.sh /run.sh -COPY sentinel.py /sentinel.py CMD [ "/run.sh" ] ENTRYPOINT [ "sh", "-c" ]