From 100219990a428ead7de1545e6c5282ead8a8e577 Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Sun, 6 Oct 2024 11:30:42 -0700 Subject: [PATCH] Moving to newer ubuntu and python --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 55760a2..a711b43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM ubuntu:bionic +FROM ubuntu:jammy RUN mkdir -p /usr/node_app COPY . /usr/node_app WORKDIR /usr/node_app -RUN apt-get update ; apt-get install -fy git python make g++ npm curl dirmngr apt-transport-https lsb-release ca-certificates +RUN apt-get update ; apt-get install -fy git python3 make g++ npm curl dirmngr apt-transport-https lsb-release ca-certificates RUN curl -sL https://deb.nodesource.com/setup_18.x | bash RUN apt-get update ; apt-get -fy install nodejs