mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-08 14:29:45 +00:00
As per http://blog.docker.com/2015/03/updates-available-to-popular-repos-update-your-images/ docker has stopped answering dockerfile/redis and dockerfile/nginx. Fix all users in our tree. Sadly this means a lot of published examples are now broken.
8 lines
67 B
Docker
8 lines
67 B
Docker
FROM redis
|
|
|
|
ADD run.sh /run.sh
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
CMD /run.sh
|