Codebase list ruby-gitlab / c26fd083-88dd-44d0-9488-e8c258f906aa/main spec / fixtures / dockerfile_project_template.json
c26fd083-88dd-44d0-9488-e8c258f906aa/main

Tree @c26fd083-88dd-44d0-9488-e8c258f906aa/main (Download .tar.gz)

dockerfile_project_template.json @c26fd083-88dd-44d0-9488-e8c258f906aa/mainraw · 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"}