summaryrefslogtreecommitdiff
path: root/vendor/Dockerfile/Binary.Dockerfile
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2017-06-26 15:36:29 +0000
committerKushal Pandya <kushalspandya@gmail.com>2017-06-26 15:47:15 +0000
commit5461623dca6cfbae5794052772f58bd657d21ea4 (patch)
treeaa6ce4f04884df0ebdb8cb6520e562eb5f0daf0e /vendor/Dockerfile/Binary.Dockerfile
parent831054a79d20e7af01106d9b1ac5a18965a51dc8 (diff)
downloadgitlab-ce-5461623dca6cfbae5794052772f58bd657d21ea4.tar.gz
Merge branch 'update-9-3-templates' into '9-3-stable'cherry-pick-ecd49e82
Update templates for 9.3 See merge request !12041
Diffstat (limited to 'vendor/Dockerfile/Binary.Dockerfile')
-rw-r--r--vendor/Dockerfile/Binary.Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/Dockerfile/Binary.Dockerfile b/vendor/Dockerfile/Binary.Dockerfile
new file mode 100644
index 00000000000..e7d560da9ac
--- /dev/null
+++ b/vendor/Dockerfile/Binary.Dockerfile
@@ -0,0 +1,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:jessie
+
+WORKDIR /usr/local/bin
+
+# Change `app` to whatever your binary is called
+Add app .
+CMD ["./app"]