Skip to content
Snippets Groups Projects
Verified Commit 5a3eb5ff authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct some issues with variables

parent 6e6db55f
Branches main
No related tags found
No related merge requests found
Pipeline #2635 passed
FROM openjdk:8-jdk as builder
ARG PLATFORM=32
ARG BUILD_TOOLS=32.0.0
FROM openjdk:8-jdk as builder
ARG PLATFORM
ARG BUILD_TOOLS
RUN apt-get --quiet update --yes && \
apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
RUN wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip && \
......@@ -19,6 +21,7 @@ RUN android-sdk-linux/tools/bin/sdkmanager \
FROM ubuntu:focal
ARG PLATFORM
ARG BUILD_TOOLS
COPY --from=builder /android-sdk-linux /android-sdk-linux
RUN ln -s /android-sdk-linux/build-tools/${BUILD_TOOLS}/apksigner /usr/local/bin/apksigner
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment