diff --git a/production/docker/Dockerfile b/production/docker/Dockerfile index 94ae35e..e0dff04 100644 --- a/production/docker/Dockerfile +++ b/production/docker/Dockerfile @@ -4,7 +4,7 @@ #IMAGE BUILD COMMANDS # ct-base-ubuntu = ubuntu 18.04 + nodejs v10 LTS #FROM christroutner/ct-base-ubuntu -FROM ubuntu:20.04 +FROM ubuntu:24.04 MAINTAINER Chris Troutner #Update the OS and install any OS packages needed. @@ -15,7 +15,7 @@ RUN apt-get install -y sudo git curl nano gnupg wget RUN sudo apt-get install -y ca-certificates curl gnupg RUN sudo mkdir -p /etc/apt/keyrings RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg -RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list +RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list RUN sudo apt-get update RUN sudo apt-get install -y nodejs build-essential