gitlab-org--gitlab-foss/vendor/Dockerfile/Binary.Dockerfile
Clement Ho 5461623dca Merge branch 'update-9-3-templates' into '9-3-stable'
Update templates for 9.3

See merge request !12041
2017-06-26 15:47:15 +00:00

11 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:jessie
WORKDIR /usr/local/bin
# Change `app` to whatever your binary is called
Add app .
CMD ["./app"]