You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Isolate your application/components code into its own directory. Example:
\openshift\*
\my-base-backend\Dockerfile
\my-base-backend\requirements.txt (symlink to ..\my-backend\requirements.txt)
\my-base-frontend\Dockerfile
\my-base-frontend\package.json (symlink to ..\my-base-backend\package.json)
\my-base-frontend\package-lock.json (symlink to ..\my-base-backend\package-lock.json)
\my-backend\requirements.txt
\my-frontend\package.json
\my-frontend\package-lock.json
\my-frontend\*
\Jenkinsfile
\LICENSE
\README.md
Notes:
1) As a rule of thumb, each `ImageStream` gets it is own directory for its source code, including Dockerfile.
2) `my-base*` are optional. The are use to create base images where dependencies are stored in an intermediate image.