Deploy source code to image without a Dockerfile
Source-to-Image (S2I) is a toolkit and workflow for building reproducible container images from source code. S2I produces ready-to-run images by injecting source code into a container image and letting the container prepare that source code for execution. By creating self-assembling builder images, you can version and control your build environments exactly like you use container images to version your runtime environments.
Source-to-image build process overview
Source-to-image (S2I) produces ready-to-run images by injecting source code into a container that prepares that source code to be run. It performs the following steps:
- Runs the
FROM <builder image>
command - Copies the source code to a defined location in the builder image
- Runs the assemble script in the builder image
- Sets the run script in the builder image as the default command
Buildah then creates the container image.
Prerequisites
- Podman installed
Installation
Download the latest release.
Choose either the linux-386 or the linux-amd64 links for 32 and 64-bit, respectively.
Unpack the downloaded tar with
You should now see an executable called s2i. Either add the location of s2i to your PATH environment variable, or move it to a pre-existing directory in your PATH. For example,
will work with most setups.
To test
To try it out, use the following command.
s2i build https://github.com/sclorg/django-ex centos/python-35-centos7 hello-python
podman run -p 8080:8080 hello-python
Now browse to http://localhost:8080 to see the running application.
Inside OpenShift
S2I images are available for you to use directly from the OpenShift Container Platform web console by following procedure:
- Log in to the OpenShift Container Platform web console using your login credentials. The default view for the OpenShift Container Platform web console is the Administrator perspective. 2, Use the perspective switcher to switch to the Developer perspective.
- In the +Add view, use the Project drop-down list to select an existing project or create a new project. 4.Click All services in the Developer Catalog tile.
- Click Builder Images under Type to see the available S2I images.
S2I images are also available though the Cluster Samples Operator.
For more information
See:
Reference
- Source-to-Image (S2I)
- Red Hat documentation Source-to-image