Codebase list ruby-gitlab / 3625f30 spec / fixtures / dockerfile_project_template.json
3625f30

Tree @3625f30 (Download .tar.gz)

dockerfile_project_template.json @3625f30raw · 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"}