Add container based dev flow (#4)
* add container based dev flow Signed-off-by: Tonis Tiigi <[email protected]> * Fix yarn test for container based dev flow Signed-off-by: CrazyMax <[email protected]> * Update contributing guidelines and test workflow Signed-off-by: CrazyMax <[email protected]> Co-authored-by: CrazyMax <[email protected]>
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
iidfile=$(mktemp -t docker-iidfile.XXXXXXXXXX)
|
||||
DOCKER_BUILDKIT=1 docker build --iidfile $iidfile --progress=plain .
|
||||
docker run -it --rm $(cat $iidfile)
|
||||
docker rmi $(cat $iidfile)
|
||||
Reference in New Issue
Block a user