summaryrefslogtreecommitdiff
path: root/vendor/Dockerfile/Binary.Dockerfile
blob: 850b487e18fecc7a09270712f1a6e9f2cb14b7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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.

FROM buildpack-deps:buster

WORKDIR /usr/local/bin

# Change `app` to whatever your binary is called
Add app .
CMD ["./app"]