Creating application with OpenShift 3

57 Views Asked by At

I'm using the new open shift 3 and I'm trying to create a new app with 3 different sources

  1. the centos/php-56-centos7 - base image
  2. A public github repo - external framework source code
  3. my local project files - 3rd party source code

The project "depends" on the 1st two sources being compiled and then and my local project files( 3rd item) needs to "merge/ integrated" with the compiled result contents already instantiated by the 1st 2.

What's the best approach to deal with this development approach?

I managed to get as far as creating a build for the first two sources via

oc new-build centos/php-56-centos7~https://github.com/invoiceninja/invoiceninja.git --dry-run -e DOCUMENTROOT=/public --name=invoiceninja-wipay

creating/ deploying on this build alone creates a successful deployment. I'm just not sure now how to "integrate" the 3rd source( local project assets/ files) into the build without replacing the contents already there

0

There are 0 best solutions below