Cloud Native applications are delivered as containers. Containers, and more specifically, container images encapsulate the application and all its dependencies in a portable format. Containerizing an application involves creating a Dockerfile, building the image and pushing it to an image registry. Create a Dockerfile To containerize an application, create a Dockerfile alongside the application’s source code. The Dockerfile has instructions describing how […]