September 12, 2019 By Vidyasagar Machupalli 3 min read

Explore the capabilities of a tool called S2I (Source-to-Image).

Recently, while drafting an OpenShift solution tutorial, I explored an interesting tool called S2I (Source-to-Image). In this post, you will learn how to create a container image directly from your source code and push the generated container image to a private IBM Cloud Container registry.

What is S2I (Source-to-Image)?

S2I is a tool for building reproducible, Docker-formatted container images. It produces ready-to-run images by injecting application source into a container image and assembling a new image. The new image incorporates the base image (the builder) and built source and is ready to use with the docker runcommand. S2I supports incremental builds, which re-use previously downloaded dependencies, previously built artifacts, etc.

Installation and setup

Let’s start by installing S2I on your machine. 

You can install the s2i binary using go get, which will download the source-to-image code into your $GOPATH, build the s2i binary, and install it into your $GOPATH/bin:

$ go get github.com/openshift/source-to-image/cmd/s2i

For Mac, You can either follow the installation instructions for Linux (and use the darwin-amd64 link) or you can just install source-to-image with Homebrew:

$ brew install source-to-image

Follow the instructions here to install on other operating systems.

To confirm the installation, run the below command on a terminal or command prompt:

$ s2i 

Follow the instructions mentioned in the link here to set up the IBM Cloud Container Registry CLI and your registry namespace.

Once created, open the terminal and export the MYNAMESPACE environment variable pointing to your Registry namespace:

$ export MYNAMESPACE=<YOUR_REGISTRY_NAMESPACE>

Let’s build

The s2i build command provides two options to generate a new container image: 

  1. Build a Docker image from a remote Git repository:
    • Usage: s2i build <source> <image> [<tag>] [flags]
    • $ s2i build https://github.com/IBM-Cloud/get-started-node nodeshift/centos7-s2i-nodejs:latest us.icr.io/$MYNAMESPACE/webapp
  2. Build from a local directory. If this directory is a git repo, the current commit will be built:
    • Clone the get-started-node Git repo and run the below command
    • $ s2i build . nodeshift/centos7-s2i-nodejs:latest us.icr.io/$MYNAMESPACE/webapplocal

Even before building an image, you can see the generated Dockerfile by appending --as-dockerfile Dockerfile to your build commands.

Once generated, check the contents of the generated Dockerfile:

$ cat Dockerfile

To understand the S2I requirements and the artifacts of the generated Dockerfile, see the documentation

Run the app locally and push it to private registry

Check the generated Docker image by running it locally with the following command:

$ docker run -p 3000:3000 -it us.icr.io/$MYNAMESPACE/webapp

Launch a browser and point to http://localhost3000 to see the app running locally:

Push the container image to the private IBM Cloud Container Registry. Don’t forget to log into the container registry with ibmcloud cr login command:

$ docker push us.icr.io/$MYNAMESPACE/webapp

You can check the container image by running the following command:

$ ibmcloud cr images

What’s next?

Was this article helpful?
YesNo

More from Cloud

Top 6 innovations from the IBM – AWS GenAI Hackathon

5 min read - Eight client teams collaborated with IBM® and AWS this spring to develop generative AI prototypes to address real-world business challenges in the public sector, financial services, energy, healthcare and other industries. Over the course of several weeks, cross-functional teams comprising client teams, IBM and AWS representatives worked to design, develop and iterate on prototypes that push the boundaries of what's possible with generative AI. IBM used design thinking and user-centric approach to guide the teams throughout the hackathon. AWS provided…

IBM + AWS: Transforming Software Development Lifecycle (SDLC) with generative AI

7 min read - Generative AI is not only changing the way applications are built, but the way they are envisioned, designed, tested, documented, and deployed. It’s also revolutionizing the software development lifecycle (SDLC). IBM and AWS are infusing Amazon Bedrock generative AI capabilities into the IBM® SDLC solution to drive increased efficiency, speed, quality and value in every application lifecycle consistently and at scale. The evolution of the SDLC landscape The software development lifecycle has undergone several silent revolutions in recent decades. The…

How digital solutions increase efficiency in warehouse management

3 min read - In the evolving landscape of modern business, the significance of robust operational and maintenance systems cannot be overstated. Efficient warehouse management helps businesses to operate seamlessly, ensure precision and drive productivity to new heights. In our increasingly digital world, bar coding stands out as a cornerstone technology, revolutionizing warehouses by enabling meticulous data tracking and streamlined workflows. With this knowledge, A3J Group is focused on using IBM® Maximo® Application Suite and the Red Hat® Marketplace to help bring inventory solutions…

IBM Newsletters

Get our newsletters and topic updates that deliver the latest thought leadership and insights on emerging trends.
Subscribe now More newsletters