40a8dc2297
try: add entrypoint and env-file options, fix genric options TODO: bind mount the source into the build directly (see dockerfile buildkit) added example folder with examples refactored: install script much more robust, allows custom target removedj volume command from dockerfile
13 lines
222 B
Bash
Executable file
13 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
# three ways to invoke with --no-cache
|
|
|
|
# inline
|
|
# NO_CACHE=true ./build "$@"
|
|
|
|
# with -n option (prefered)
|
|
./build -n "$@"
|
|
alias rebuild="build -nfunction_list"
|
|
|
|
# as export
|
|
#export NO_CACHE=true
|
|
#./build "$@"
|