Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giannisalinetti/golang-s2i
https://github.com/giannisalinetti/golang-s2i
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/giannisalinetti/golang-s2i
- Owner: giannisalinetti
- Created: 2018-03-07T07:53:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-18T13:19:25.000Z (over 6 years ago)
- Last Synced: 2024-10-28T06:50:11.776Z (about 2 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample GO builder image
A minimal s2i Go Builder image, suitable for small code demonstations.
### Files and Directories
| File | Required? | Description |
|------------------------|-----------|--------------------------------------------------------------|
| Dockerfile | Yes | Defines the base builder image |
| s2i/bin/assemble | Yes | Script that builds the application |
| s2i/bin/usage | No | Script that prints the usage of the builder |
| s2i/bin/run | Yes | Script that runs the application |
| s2i/bin/save-artifacts | No | Script for incremental builds that saves the built artifacts |
| test/run | No | Test script for the builder image |
| test/test-app | Yes | Test application source code |