aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-12-19 03:20:50 +0530
committerLibravatar GitHub <noreply@github.com>2021-12-19 03:20:50 +0530
commitdfc9975fa409f69044fbfb028b3c48590908ec5d (patch)
tree773205ddcf9944dca764562536b620bd0a0e1618 /Dockerfile
parentFix propType title is not required, but has no corresponding defaultProps dec... (diff)
downloadferdium-app-dfc9975fa409f69044fbfb028b3c48590908ec5d.tar.gz
ferdium-app-dfc9975fa409f69044fbfb028b3c48590908ec5d.tar.zst
ferdium-app-dfc9975fa409f69044fbfb028b3c48590908ec5d.zip
Upgrade system dependencies (node, npm, pnpm, node-gyp) (#2336)
* Upgrade the following system dependencies: 'nodejs' to '16.13.1' 'npm' to '8.1.2' 'pnpm' to '6.24.1' 'node-gyp' to '8.4.1' * Remove duplicate reference to node version for ease of maintenance
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 3e02fe64c..372a2c8cb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
1# 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 1# 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
2 2
3FROM docker.io/library/node:16.13.0-buster as builder 3FROM docker.io/library/node:16.13.1-buster as builder
4 4
5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" 5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share"
6 6
@@ -16,7 +16,7 @@ RUN apt-get update -y \
16 16
17WORKDIR /usr/src/ferdi 17WORKDIR /usr/src/ferdi
18 18
19RUN npm i -g pnpm@6.23.6 19RUN npm i -g npm@8.1.2 pnpm@6.24.1
20 20
21COPY package*.json ./ 21COPY package*.json ./
22 22