From 38734e27cbeae83a2de49cc358c5188b6ff0a1fd Mon Sep 17 00:00:00 2001 From: Travis Chase Date: Tue, 11 Apr 2023 11:53:53 -0500 Subject: [PATCH] Upgrading base image, Node.js, NPM, and Phoenix --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3f0961..33d790f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/fortawesome/elixir:1.14.3-otp25.2.1-rust1.65.0 +FROM quay.io/fortawesome/elixir:1.14.4-otp25.3-rust1.65.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.13.0 +ENV NODE_VERSION 18.15.0 # install Node.js with package RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - @@ -26,14 +26,14 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - RUN apt-get install -y nodejs # install NPM version -ENV NPM_VERSION 9.3.0 +ENV NPM_VERSION 9.6.4 RUN npm install -g npm@$NPM_VERSION # install Hex RUN mix local.hex --force -ENV PHOENIX_VERSION 1.6.15 +ENV PHOENIX_VERSION 1.7.2 # install the Phoenix Mix archive RUN mix archive.install --force hex phx_new $PHOENIX_VERSION