-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add docker file for Gradle tests on TeamCity * Remove configuring JDK for tests * Update compose & kotlin compiler in testAndroidxCompiler
- Loading branch information
1 parent
c2865e0
commit 8f3578b
Showing
5 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters