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
2023-08-31 11:40:32 +03:00

16 lines
386 B
Docker

FROM ubuntu
RUN apt-get update && apt-get install -y git jq openjdk-17-jdk zip wget
RUN git clone --recurse https://github.com/revanced-apks/build-apps.git /app
WORKDIR /app
COPY config.toml config.toml
COPY options.json options.json
RUN groupadd -g 1000 revanced
RUN useradd -u 1000 -g revanced revanced
RUN chown -R revanced:revanced /app
USER revanced
CMD [ "bash", "build.sh" ]