The `oc scale` command is needed to prevent OpenShift from running your builder image as an application.
You could also delete the useless service and the deployment config :
```
$ oc delete service golang-centos7
$ oc delete dc golang-centos7
```
#### Creating and running the application image
#### Creating and running the application image
The application image combines the builder image with your applications source code, which is served using whatever application is installed via the *Dockerfile*, compiled using the *assemble* script, and run using the *run* script.
The application image combines the builder image with your applications source code, which is served using whatever application is installed via the *Dockerfile*, compiled using the *assemble* script, and run using the *run* script.
The following command will create the application image and run it:
The following command will create the application image and run it:
Using the logic defined in the *assemble* script, s2i will now create an application image using the builder image as a base and including the source code from the test/test-app directory.
Using the logic defined in the *assemble* script, s2i will now create an application image using the builder image as a base and including the source code from the test/test-app directory.