2018-01-18 20:04:15 +00:00
---
2018-02-27 18:53:45 +00:00
reviewers:
2018-01-18 20:04:15 +00:00
- david-mcmahon
- jbeda
title: Building from Source
---
2018-08-21 22:54:33 +00:00
You can either build a release from source or download a pre-built release. If you do not plan on developing Kubernetes itself, we suggest using a pre-built version of the current release, which can be found in the [Release Notes ](/docs/setup/release/notes/ ).
2018-01-18 20:04:15 +00:00
2018-07-17 14:27:40 +00:00
The Kubernetes source code can be downloaded from the [kubernetes/kubernetes ](https://github.com/kubernetes/kubernetes ) repo.
2018-01-18 20:04:15 +00:00
2018-05-17 18:35:53 +00:00
## Building from source
2018-01-18 20:04:15 +00:00
If you are simply building a release from source there is no need to set up a full golang environment as all building happens in a Docker container.
Building a release is simple.
```shell
git clone https://github.com/kubernetes/kubernetes.git
cd kubernetes
make release
```
2018-05-05 16:00:51 +00:00
For more details on the release process see the kubernetes/kubernetes [`build` ](http://releases.k8s.io/{{< param "githubbranch" >}}/build/ ) directory.