From f56788465d9fae5753213543f5383d9b1747844c Mon Sep 17 00:00:00 2001 From: Yehoshua Pesach Wallach Date: Sun, 8 May 2022 23:53:22 +0300 Subject: [PATCH] docker: bump ubuntu to 20.04 and node to 18 --- docker/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index a1f48848..1943177a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM ubuntu:20.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update -qq \ @@ -21,7 +21,8 @@ RUN apt-get update -qq \ python3-dev \ python \ git \ - && curl -sL https://deb.nodesource.com/setup_12.x | bash - \ + apt-utils \ + && curl -sL https://deb.nodesource.com/setup_18.x | bash - \ && apt-get install -y nodejs \ && rm -rf /var/cache/apt/* /var/lib/apt/lists/*;