Codebase list ruby-gitlab / upstream/4.16.1 spec / fixtures / dockerfile_project_template.json
upstream/4.16.1

Tree @upstream/4.16.1 (Download .tar.gz)

dockerfile_project_template.json @upstream/4.16.1raw · history · blame

{"name":"Binary","content":"# This file is a template, and might need editing before it works on your project.\n# This Dockerfile installs a compiled binary into a bare system.\n# You must either commit your compiled binary into source control (not recommended)\n# or build the binary first as part of a CI/CD pipeline.\n\nFROM buildpack-deps:jessie\n\nWORKDIR /usr/local/bin\n\n# Change `app` to whatever your binary is called\nAdd app .\nCMD [\"./app\"]\n"}