25 lines
1.0 KiB
Markdown
25 lines
1.0 KiB
Markdown
# docker-revanced-builder
|
|
|
|
A Docker container that will help you build Revanced apps. Based on [revanced-apks/build-apps](https://github.com/revanced-apks/build-apps).
|
|
|
|
```shell
|
|
docker build . -t registry.karaolidis.com/nikas36/revanced-builder:latest
|
|
docker run -v $(pwd)/build:/app/build -e GITHUB_TOKEN=YOUR_GITHUB_TOKEN registry.karaolidis.com/nikas36/revanced-builder:latest
|
|
```
|
|
|
|
## Environment Variables
|
|
|
|
| Environment Variable | Description |
|
|
| ------------------------ | ---------------------------------------------------------- |
|
|
| `GITHUB_TOKEN` | Github token to use for downloading patches. |
|
|
|
|
## Volumes
|
|
|
|
| Volume | Description |
|
|
| ------------ | ----------------------------------------------- |
|
|
| `/app/build` | The build directory (should contain a keystore) |
|
|
|
|
## Notes
|
|
|
|
Remember to download [VancedMicroG](https://github.com/TeamVanced/VancedMicroG/releases) in order to be able to sign in to your Google account.
|