From 260354eeb1959d261fd8b30804f4c48ee074eb18 Mon Sep 17 00:00:00 2001 From: Emanuele Bezzi Date: Wed, 12 Apr 2023 14:56:01 -0400 Subject: [PATCH] chore: update Docker base image to ubuntu 22 (#586) --- hosted/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosted/Dockerfile b/hosted/Dockerfile index b1c91197a..bf0164ae4 100644 --- a/hosted/Dockerfile +++ b/hosted/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:focal +FROM ubuntu:22.04 ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 @@ -8,7 +8,7 @@ ENV DEPLOYMENT_STAGE=$HAPPY_ENV ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ - apt-get install -y gettext nginx moreutils build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests python3-aiohttp llvm jq npm git zip curl && \ + apt-get install -y gettext nginx moreutils build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests python3-aiohttp llvm jq git zip curl && \ curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get -y install nodejs && \ node -v && \