├── .do ├── app.yaml └── deploy.template.yaml ├── Dockerfile ├── README.md ├── go.mod └── main.go /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-dockerfile/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-dockerfile/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-dockerfile/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-dockerfile/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module gitlab.com/snormore/hello 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-dockerfile/HEAD/main.go --------------------------------------------------------------------------------