X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/65512d6058693505a3615418bdc21de6b3c485cd..b32d84878cfbc0f830d8e294d4f185c2562aa850:/scripts/Dockerfile diff --git a/scripts/Dockerfile b/scripts/Dockerfile index 43f4ba57..2c750466 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -9,26 +9,28 @@ FROM ubuntu:16.10 # Fix locale to avoid warnings: ENV LANG C.UTF-8 -# We expect this to be mounted with '-v $PWD:/root/termux-packages': -WORKDIR /root/termux-packages - # Needed for setup: ADD ./setup-ubuntu.sh /tmp/setup-ubuntu.sh ADD ./setup-android-sdk.sh /tmp/setup-android-sdk.sh -# Allow configure to be run as root: -ENV FORCE_UNSAFE_CONFIGURE 1 - # Setup needed packages and the Android SDK and NDK: RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -yq sudo && \ - /tmp/setup-ubuntu.sh && \ - apt-get clean && \ - /tmp/setup-android-sdk.sh && \ + apt-get -yq upgrade && \ + apt-get install -yq sudo && \ + adduser --disabled-password --shell /bin/bash --gecos "" builder && \ + echo "builder ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/builder && \ + chmod 0440 /etc/sudoers.d/builder && \ + su - builder -c /tmp/setup-ubuntu.sh && \ + su - builder -c /tmp/setup-android-sdk.sh && \ # Removed unused parts to make a smaller Docker image: - cd /root/lib/android-ndk/ && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* && \ + cd /home/builder/lib/android-ndk/ && \ rm -Rf toolchains/mips* && \ rm -Rf sources/cxx-stl/gabi++ sources/cxx-stl/llvm-libc++* sources/cxx-stl/system/ sources/cxx-stl/stlport && \ cd platforms && ls | grep -v android-21 | xargs rm -Rf && \ - cd /root/lib/android-sdk/tools && rm -Rf emulator* lib* proguard templates + cd /home/builder/lib/android-sdk/tools && rm -Rf emulator* lib* proguard templates + +# We expect this to be mounted with '-v $PWD:/home/builder/termux-packages': +WORKDIR /home/builder/termux-packages