aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-19 12:08:16 +0400
committerLibravatar GitHub <noreply@github.com>2022-04-19 08:08:16 +0000
commite72bf2ccdf5622937aebcfcddce09428799b2ef1 (patch)
tree4dfa0e33d91fccd1d13a313820a4735af9a97d04 /Dockerfile
parentUpgrade electron to '18.0.4' (diff)
downloadferdium-app-e72bf2ccdf5622937aebcfcddce09428799b2ef1.tar.gz
ferdium-app-e72bf2ccdf5622937aebcfcddce09428799b2ef1.tar.zst
ferdium-app-e72bf2ccdf5622937aebcfcddce09428799b2ef1.zip
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
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 92ce19d57..925f81600 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.1-buster as builder 3FROM docker.io/library/node:16.14.2-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/ferdium 17WORKDIR /usr/src/ferdium
18 18
19RUN npm i -g npm@8.1.2 pnpm@6.24.1 19RUN npm i -g npm@8.7.0 pnpm@6.32.8
20 20
21COPY package*.json ./ 21COPY package*.json ./
22 22