debian-mirror-gitlab/vendor/Dockerfile/Binary.Dockerfile
2020-11-24 15:15:51 +05:30

12 lines
332 B
Docker

# 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"]