This PR adresses #56
The build command now supports building only the docker container.
You can do this with the --docker-only flag.
<<your_cli>> docker build --docker-only
The run command support this too.
You can do this with --build-container<<your_cli>> docker run --build-container --env=dev
If you want to run and build the flutter app and the container you can do this with:
<<your_cli>> docker run --build-all --env=dev
This PR adresses #56 The build command now supports building only the docker container. You can do this with the
--docker-only
flag.<<your_cli>> docker build --docker-only
The run command support this too. You can do this with
--build-container
<<your_cli>> docker run --build-container --env=dev
If you want to run and build the flutter app and the container you can do this with:
<<your_cli>> docker run --build-all --env=dev