mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 21:12:07 +00:00
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).
This commit is contained in:
parent
ab35fff6f0
commit
e72a3497c6
@ -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" ]
|
||||
|
Loading…
Reference in New Issue
Block a user