This website requires JavaScript.
Explore
Help
Sign In
kubernetes
/
website
mirror of
https://github.com/kubernetes/website.git
Watch
1
Star
0
Fork
You've already forked website
0
Code
Issues
Projects
Releases
Wiki
Activity
1d89eb077a
website
/
content
/
ru
/
examples
/
minikube
/
Dockerfile
5 lines
74 B
Docker
Raw
Normal View
History
Unescape
Escape
Init Russian localization (#16404) * initial * aisonaku owner * initial. copy minimal en content to ru * i18n strings update * main page, one section * draft main page, setup, minicube * main page * pick up solution * Init russian translate * Translated hello-minikube.md file * tutorials started * russ localization * update config.toml and add README-ru.md * update README.md for the reference to the Russian languge * Update README-ru.md Co-Authored-By: Tim Bannister <tim@scalefactory.com> * Update README-ru.md * Update README-ru.md * concepts overview started * Update owners aliases * Remove duplicate section * Cleanup Remove untraslated files * Add examples * Fix typo * Apply suggestions from code review Co-Authored-By: Alexey Pyltsyn <lex61rus@gmail.com> Co-Authored-By: Tim Bannister <tim@scalefactory.com> * partly fixed for comments * Remove partially translated files * Translate remaining strings * Translate base concepts
2019-11-14 22:15:14 +00:00
FROM
node:6.14.2
EXPOSE
8080
COPY
server.js .
ru/examples/minikube/Dockerfile: modify CMD to use exec form (#18621) Replicate https://github.com/kubernetes/website/pull/18618
2020-01-12 11:57:37 +00:00
CMD
[
"node"
,
"server.js"
]