From dabf384140f4844f25e7250cc948ea906486208a Mon Sep 17 00:00:00 2001 From: Travis Chase Date: Mon, 11 Sep 2023 09:01:57 -0500 Subject: [PATCH] Update to Base image (elixir:1.15.5-otp26.0.2-rust1.72.0), Node.js (18.17.1), NPM (10.1.0), and Phoenix (1.7.7) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2884913..ffb5ddb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/fortawesome/elixir:1.15.4-otp26.0.2-rust1.71.0 +FROM quay.io/fortawesome/elixir:1.15.5-otp26.0.2-rust1.72.0 ENV DEBIAN_FRONTEND noninteractive @@ -18,7 +18,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \ # Install Node ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 18.16.1 +ENV NODE_VERSION 18.17.1 # install Node.js with package RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - @@ -26,7 +26,7 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - RUN apt-get install -y nodejs # install NPM version -ENV NPM_VERSION 9.8.0 +ENV NPM_VERSION 10.1.0 RUN npm install -g npm@$NPM_VERSION