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

Updated build file to remove docker support

parent 1972b844
No related branches found
No related tags found
No related merge requests found
ARG SDK_VERSION
ARG SDK_VERSION=30.0.3
FROM k8r.eu/justjanne/android-sdk:$SDK_VERSION
RUN apt-get --quiet update --yes && \
apt-get --quiet install --yes python3 python3-lxml podman
apt-get --quiet install --yes python3 python3-lxml
ENV PATH=$PATH:$ANDROID_HOME/platform-tools/
ENV ANDROID_HOME=$PWD/android-sdk-linux
ENV GRADLE_OPTS="-Dorg.gradle.daemon=False"
ARG UID=1000
ARG GID=1000
RUN mkdir /build && \
chown $UID:$GID /build && \
groupadd --gid ${GID} build && \
useradd --uid ${UID} --gid ${GID} --home /build build
WORKDIR /build
RUN podman system service -t 0 tcp:localhost:8880 &
ENV DOCKER_HOST=tcp://localhost:8880
ENV TESTCONTAINERS_RYUK_DISABLED=true
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