Browse Source
* Add docker file for Gradle tests on TeamCity * Remove configuring JDK for tests * Update compose & kotlin compiler in testAndroidxCompilerpull/2716/head
Alexey Tsvetkov
2 years ago
committed by
GitHub
5 changed files with 15 additions and 13 deletions
@ -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 |
Loading…
Reference in new issue