aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2022-01-02 12:24:40 +0100
committerLibravatar kytwb <kytwb@pm.me>2022-01-02 12:24:40 +0100
commit4c8a2c1842551b64f557b2bc957cddcbdf2e11de (patch)
tree2782d662eb55b88af3cec46c58a4fb7fcb9798b4 /Dockerfile
parent5.6.7 (diff)
downloadferdium-app-4c8a2c1842551b64f557b2bc957cddcbdf2e11de.tar.gz
ferdium-app-4c8a2c1842551b64f557b2bc957cddcbdf2e11de.tar.zst
ferdium-app-4c8a2c1842551b64f557b2bc957cddcbdf2e11de.zip
Revert "Revert "Upgrade system dependencies (node, npm, pnpm, node-gyp) (#2336)""
This reverts commit 712c2a4c237248b63d6553f557806d5dcce797f1. # Conflicts: # .github/workflows/builds.yml
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