1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00
Files
Corey Daley a8f4df0479 Overhaul of Source-to-Image
Updating README(s), templates, and examples
2017-02-23 10:15:59 -05:00

12 lines
365 B
Bash
Executable File

#!/bin/bash -e
# The run script executes the server that runs your application.
#
# For more information see the documentation:
# https://github.com/openshift/source-to-image/blob/master/docs/builder_image.md
#
# We will turn off daemonizing for the nginx process so that the container
# doesn't exit after the process runs.
exec /usr/sbin/nginx -g "daemon off;"