Update Docker build instructions after #3363 (#3407)

This commit is contained in:
Andrew Szeto 2023-10-21 07:57:57 -05:00 committed by GitHub
parent 247735c434
commit 01c949a8ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
We provide an easy way to leverage `apktool`, along with common Android tools such as `zipalign` and `apksigner`, all from within Docker.
## Building the Docker image
To use the image, pull or build with the included Dockerfile:
To use the image, pull the pre-built image or build one from the repo root with the included Dockerfile:
```bash
docker pull ghcr.io/ibotpeaches/apktool:latest
# OR
docker build -t apktool:local .
docker build -t apktool:local -f docker/Dockerfile .
```
## Using the Docker image