forked from not-fl3/cargo-quad-apk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
60 lines (49 loc) · 2.27 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
FROM rust:slim-bullseye
RUN echo 'deb http://httpredir.debian.org/debian-security stretch/updates main' >/etc/apt/sources.list.d/jessie-backports.list
# see https://bugs.debian.org/775775
# and https://github.com/docker-library/java/issues/19#issuecomment-70546872
RUN export CA_CERTIFICATES_JAVA_VERSION=20170929~deb9u3
RUN apt-get update
RUN apt install -yq software-properties-common
# this is horrible, we really need to switch to some sensible distro
RUN apt-add-repository 'deb http://security.debian.org/debian-security stretch/updates main'
RUN apt-get update
RUN apt-get install -yq openjdk-8-jre-headless openjdk-8-jdk-headless unzip wget cmake
RUN rustup toolchain install 1.65.0
RUN rustup default 1.65
RUN rustc --version
RUN rustup target add armv7-linux-androideabi
RUN rustup target add aarch64-linux-android
RUN rustup target add i686-linux-android
RUN rustup target add x86_64-linux-android
# Install Android SDK
ENV ANDROID_HOME /opt/android-sdk-linux
RUN mkdir ${ANDROID_HOME} && \
cd ${ANDROID_HOME} && \
wget -q https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip && \
unzip -q sdk-tools-linux-4333796.zip && \
rm sdk-tools-linux-4333796.zip && \
chown -R root:root /opt
RUN mkdir -p ~/.android && touch ~/.android/repositories.cfg
RUN yes | ${ANDROID_HOME}/tools/bin/sdkmanager "platform-tools" | grep -v = || true
RUN yes | ${ANDROID_HOME}/tools/bin/sdkmanager "platforms;android-31" | grep -v = || true
RUN yes | ${ANDROID_HOME}/tools/bin/sdkmanager "build-tools;31.0.0" | grep -v = || true
RUN ${ANDROID_HOME}/tools/bin/sdkmanager --update | grep -v = || true
# Install Android NDK
RUN cd /usr/local && \
wget -q http://dl.google.com/android/repository/android-ndk-r25-linux.zip && \
unzip -q android-ndk-r25-linux.zip && \
rm android-ndk-r25-linux.zip
ENV NDK_HOME /usr/local/android-ndk-r25
# Copy contents to container. Should only use this on a clean directory
COPY . /root/cargo-loki-apk
RUN apt-get install -qy libssl-dev pkg-config
# Install binary
RUN cargo install --path /root/cargo-loki-apk
# Remove source and build files
RUN rm -rf /root/cargo-loki-apk
# Add build-tools to PATH, for apksigner
ENV PATH="/opt/android-sdk-linux/build-tools/31.0.0/:${PATH}"
# Make directory for user code
RUN mkdir /root/src
WORKDIR /root/src