mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-03-20 17:42:40 -04:00
9 lines
126 B
Docker
9 lines
126 B
Docker
|
|
FROM google/cloud-sdk
|
||
|
|
|
||
|
|
RUN apt-get update && apt-get install -y curl
|
||
|
|
|
||
|
|
ADD run.sh /run.sh
|
||
|
|
RUN chmod a+x /*.sh
|
||
|
|
|
||
|
|
CMD ["/run.sh"]
|