2017-06-26 11:36:29 -04:00
|
|
|
# This Dockerfile installs a compiled binary into a bare system.
|
|
|
|
# You must either commit your compiled binary into source control (not recommended)
|
|
|
|
# or build the binary first as part of a CI/CD pipeline.
|
|
|
|
|
2020-09-15 08:09:30 -04:00
|
|
|
FROM buildpack-deps:buster
|
2017-06-26 11:36:29 -04:00
|
|
|
|
|
|
|
WORKDIR /usr/local/bin
|
|
|
|
|
|
|
|
# Change `app` to whatever your binary is called
|
|
|
|
Add app .
|
|
|
|
CMD ["./app"]
|