Fix gradle tests (#2708)

* Add docker file for Gradle tests on TeamCity

* Remove configuring JDK for tests

* Update compose & kotlin compiler in testAndroidxCompiler
This commit is contained in:
Alexey Tsvetkov
2023-02-06 22:25:24 +03:00
committed by GitHub
parent c2865e05cc
commit 8f3578bdca
5 changed files with 15 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install binutils --no-install-recommends -y && \
apt-get install fakeroot --no-install-recommends -y && \
apt-get install dpkg --no-install-recommends -y && \
apt-get install dpkg-dev --no-install-recommends -y && \
apt-get install libgl-dev --no-install-recommends -y
ENV PATH="/usr/lib/x86_64-linux-gnu/:$PATH"
RUN apt-get install openjdk-16-jdk --no-install-recommends -y