From e72bf2ccdf5622937aebcfcddce09428799b2ef1 Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Tue, 19 Apr 2022 12:08:16 +0400 Subject: Upgrade system dependencies (#15) node: 16.13.1 --> 16.14.2 npm: 8.1.2 --> 8.7.0 pnpm: 6.24.1 --> 6.32.8 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 92ce19d57..925f81600 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture -FROM docker.io/library/node:16.13.1-buster as builder +FROM docker.io/library/node:16.14.2-buster as builder ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" @@ -16,7 +16,7 @@ RUN apt-get update -y \ WORKDIR /usr/src/ferdium -RUN npm i -g npm@8.1.2 pnpm@6.24.1 +RUN npm i -g npm@8.7.0 pnpm@6.32.8 COPY package*.json ./ -- cgit v1.2.3-54-g00ecf