first commit

This commit is contained in:
2023-09-28 02:49:48 +02:00
commit 3a891194f1
7 changed files with 77 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alvrme/alpine-android:android-33-jdk11
RUN adduser -D build -u 1000
RUN chown -R build:build /opt/sdk
WORKDIR /files
COPY docker-entrypoint.sh /
COPY build.sh Infinity.jks .
RUN chmod +x /docker-entrypoint.sh && \
chmod +x build.sh
ENTRYPOINT ["/docker-entrypoint.sh"]