This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Generic Dockerfile demonstrating good practices | |
### Imports | |
# Bad. You risk both the stability and security of your application | |
# You don't know what they might merge into their image or who they may give control of the project | |
# https://twitter.com/b0rk/status/1226856930875932672/photo/1 | |
FROM random-person/golang:latest | |
# Bad-ish. We don't need Ubuntu, it comes with unnecessary bloat |