This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
revanced-builder/Dockerfile
Nikolaos Karaolidis b05c20500a Initial commit
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2023-03-22 15:22:30 +02:00

19 lines
371 B
Docker

FROM ubuntu
RUN apt-get update
RUN apt-get install -y bsdmainutils curl wget jq openjdk-17-jre aapt
WORKDIR /app
COPY revanced.sh .
RUN chmod +x revanced.sh
RUN groupadd -g 1000 revanced
RUN useradd -u 1000 -g revanced revanced
RUN chown -R revanced:revanced /app
USER revanced
ENV GITHUB_TOKEN=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
CMD ["./revanced.sh", "-A"]