Note: The Node.js code sample uses the 3001 HTTP port.
Before you begin creating an application with this devfile
code sample, it's helpful to understand the relationship between the devfile
and Dockerfile
and how they contribute to your build. You can find these files at the following URLs:
- The
devfile.yaml
file has animage-build
component that points to yourDockerfile
. - The
Dockerfile
contains the instructions you need to build the code sample as a container image. - The
devfile.yaml
kubernetes-deploy
component points to adeploy.yaml
file that contains instructions for deploying the built container image. - The
devfile.yaml
deploy
command completes the outerloop deployment phase by pointing to theimage-build
andkubernetes-deploy
components to create your application.
This stack is licensed under the EPL 2.0 license.
- For more information about Node.js, see How do I start with Node.js after I installed it?.
- For more information about devfiles, see Devfile.io.
- For more information about Dockerfiles, see Dockerfile reference.