Include requirements and how to build application
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Steven Polley 2020-06-20 20:55:48 -06:00
parent 596835a0a6
commit 53eaf066b3
1 changed files with 15 additions and 1 deletions

View File

@ -4,11 +4,25 @@
A simple view counter for a website
### Requirements
* Go
* Docker
* Docker Compose (Optional) or Kubernetes (Optional)
### Build Application
```bash
go build -a -ldflags '-w'
```
### Build Container
Disclaimer! If you use this, you'll need to build the container yourself. I have a CICD pipeline setup, but my registry is used for my internal infrastructure only and is not publicly available.
Because this is a staticly linked binary with no external dependancies, the container literally only contains the binary file, keeping it clean and low in size (6.3MB). I never did understand why people include operating systems in containers.
Because this is a staticly linked binary with no external runtime dependancies, the container literally only contains the binary file, keeping it clean and low in size (6.3MB). I never did understand why people include operating systems in containers.
```bash