From 7442b68f4d8494107260416a9773ee4d83f399a4 Mon Sep 17 00:00:00 2001 From: Tunca Ulubilge Date: Fri, 5 Jan 2024 15:37:22 +0000 Subject: [PATCH 1/2] Update Dockerfile to use Ubuntu 22.04 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb722b3..37233b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:22.04 LABEL Description="This image provides a base Android development environment for React Native, and may be used to run tests." From f27ac6ffafffbc4aa584e9b6805cb27962707d38 Mon Sep 17 00:00:00 2001 From: Tunca Ulubilge Date: Fri, 5 Jan 2024 15:45:57 +0000 Subject: [PATCH 2/2] Update libc++1-11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37233b3..e9fbea1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN apt update -qq && apt install -qq -y --no-install-recommends \ git \ g++ \ gnupg2 \ - libc++1-10 \ + libc++1-11 \ libgl1 \ libtcmalloc-minimal4 \ make \