Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Group arguments closer to where they are used
Browse files Browse the repository at this point in the history
  • Loading branch information
plastiv committed Mar 8, 2019
1 parent 87470e1 commit 7f2ca38
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions android-emulator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
FROM debian:stretch

ARG BUILD_TOOLS_VERSION=28.0.3
ARG PLATFORM_API_LEVEL=28
ARG EMULATOR_API_LEVEL=28
ARG EMULATOR_ARCH=x86_64

# Install java and dependencies
# to debug missing lib issues use ldconfig -p | grep libGL
# Dev deps are taken from https://source.android.com/source/initializing#installing-required-packages-ubuntu-1404
Expand Down Expand Up @@ -76,6 +71,11 @@ ENV ANDROID_SDK_HOME ${ANDROID_SDK_ROOT}/sdk-home
# /emulator - emulator, emulator-check
ENV PATH ${ANDROID_SDK_ROOT}/emulator:${ANDROID_SDK_ROOT}/tools/bin:${ANDROID_SDK_ROOT}/platform-tools:${PATH}

ARG BUILD_TOOLS_VERSION=28.0.3
ARG PLATFORM_API_LEVEL=28
ARG EMULATOR_API_LEVEL=28
ARG EMULATOR_ARCH=x86_64

# Update AndroidSDK
# Get ids from sdkmanager --list
RUN yes 'y' | sdkmanager --licenses >/dev/null \
Expand Down

0 comments on commit 7f2ca38

Please sign in to comment.