From fb5522592b4a8a5713089f5f7d3b97ad38e2d70f Mon Sep 17 00:00:00 2001 From: Javernaut Date: Sat, 13 Aug 2022 10:55:10 +0300 Subject: [PATCH] Updating Docker image to use Ubuntu 22.04 and Android NDK r25 --- tools/docker/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 0e89403..6c610e1 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -1,13 +1,13 @@ -FROM ubuntu:20.04 +FROM ubuntu:22.04 # Arguments that can be overridden in 'docker build' command: # Versions of Android SDK and NDK. The CMake is installed via NDK. -ARG VERSION_SDK=6858069 -ARG VERSION_NDK=21.4.7075529 -ARG VERSION_CMAKE=3.10.2.4988404 +ARG VERSION_SDK=8512546 +ARG VERSION_NDK=25.0.8775105 +ARG VERSION_CMAKE=3.22.1 # Package to install via pip3 -ARG VERSION_MESON=0.58.2 +ARG VERSION_MESON=0.63.0 # The HOME variable isn't available for ENV directive (during building an image). # So we define one manually. For alpine and ubuntu it should be '/root'