We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a repo which has a structure like this:
├── common │ └── utils.py ├── func1 │ └── func.py └── func2 └── func.py
common package contains some code that i'd like to share between my functions.
common
The problem is that when i func build my func1, the resulting image only contain func1 content in its internal workspace folder.
func build
func1
workspace
Is it possible to somehow instruct the builder to include some outer modules to the build?
I know that packaging is an option but i dont want to package and install, say, shared configs.
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a repo which has a structure like this:
common
package contains some code that i'd like to share between my functions.The problem is that when i
func build
my func1, the resulting image only containfunc1
content in its internalworkspace
folder.Is it possible to somehow instruct the builder to include some outer modules to the build?
I know that packaging is an option but i dont want to package and install, say, shared configs.
Thanks.
The text was updated successfully, but these errors were encountered: