File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ docker-all: docker-build-image docker-run-build $(DOCKER_IMAGE)
265
265
.PHONY : docker-shell
266
266
docker-shell : # # Builds a docker image with the android build env and opens a shell
267
267
docker build -f docker/DockerFile.amd64-shell -t tailscale-android-shell-amd64 .
268
- docker run -v --rm $(CURDIR ) :/build/tailscale-android -it tailscale-android-shell-amd64
268
+ docker run --rm -v $(CURDIR ) :/build/tailscale-android -it tailscale-android-shell-amd64
269
269
270
270
.PHONY : docker-remove-shell-image
271
271
docker-remove-shell-image : # # Removes all docker shell image
Original file line number Diff line number Diff line change @@ -63,13 +63,13 @@ and XML files in Android Studio. Enable "Format on Save".
63
63
If you wish to avoid installing software on your host system, a Docker based development strategy is available, you can build and start a shell with:
64
64
65
65
``` sh
66
- make dockershell
66
+ make docker-shell
67
67
```
68
68
69
69
Several other makefile recipes are available for setting up the proper build environment and running builds.
70
70
71
- Note that the docker makefile recipes s will preserve the image and remove container on completion.
72
- If changes are made to the build environment or toolchain, cached docker images may need to be rebuilt.
71
+ Note that the docker makefile recipes s will preserve the image and remove container on completion.
72
+ If changes are made to the build environment or toolchain, cached docker images may need to be rebuilt.
73
73
The docker build image name is parameterized in the makefile and changing it provides a simple means to do this.
74
74
75
75
### Nix
You can’t perform that action at this time.
0 commit comments