diff --git a/template1.md/.gitkeep b/template1.md/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/template1.md/Dockerfile b/template1.md/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..74f8a1409c63c8246c8f3e0ad4c34f78ac202915 --- /dev/null +++ b/template1.md/Dockerfile @@ -0,0 +1,13 @@ +# This file is a template, and might need editing before it works on your project. +# 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:buster + +WORKDIR /usr/local/bin + +# Change `app` to whatever your binary is called +Add app . +CMD ["./app"] +hey Alkama \ No newline at end of file