aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-21 20:05:02 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-21 20:05:02 +0100
commit712c2a4c237248b63d6553f557806d5dcce797f1 (patch)
tree46c8e9648c30409734981b7ccbf823a2805255c8 /Dockerfile
parent5.6.5 (diff)
downloadferdium-app-712c2a4c237248b63d6553f557806d5dcce797f1.tar.gz
ferdium-app-712c2a4c237248b63d6553f557806d5dcce797f1.tar.zst
ferdium-app-712c2a4c237248b63d6553f557806d5dcce797f1.zip
Revert "Upgrade system dependencies (node, npm, pnpm, node-gyp) (#2336)"
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 372a2c8cb..3e02fe64c 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.13.0-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 npm@8.1.2 pnpm@6.24.1 19RUN npm i -g pnpm@6.23.6
20 20
21COPY package*.json ./ 21COPY package*.json ./
22 22