From 56f16942733346a9ba72cd107867d9ff9f885838 Mon Sep 17 00:00:00 2001 From: budtmo Date: Fri, 3 Feb 2023 16:03:13 +0100 Subject: [PATCH] Using ubuntu focal and updated node to version 18 --- Appium/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Appium/Dockerfile b/Appium/Dockerfile index 14c7a62..df6f0dc 100644 --- a/Appium/Dockerfile +++ b/Appium/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic-20230126 +FROM ubuntu:focal-20230126 ENV DEBIAN_FRONTEND=noninteractive @@ -108,7 +108,7 @@ ENV PATH=$PATH:$ANDROID_HOME/platform-tools:$ANDROID_HOME/build-tools # Install latest nodejs, npm, appium # Using this workaround to install Appium -> https://github.com/appium/appium/issues/10020 -> Please remove this workaround asap #==================================== -ENV NODE_VERSION=16 +ENV NODE_VERSION=18 ENV APPIUM_VERSION=1.22.3 RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash && \ apt-get -qqy install nodejs && \