aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar André Oliveira <oliveira.andrerodrigues95@gmail.com>2023-09-28 13:17:28 +0100
committerLibravatar André Oliveira <oliveira.andrerodrigues95@gmail.com>2023-09-28 13:17:28 +0100
commit0bfd107af07e9cfb32266112361850727d4660df (patch)
tree43c4a64ef4729c898f39464dac5ce0006fa44f87
parent1.3.14 [skip ci] (diff)
downloadferdium-server-0bfd107af07e9cfb32266112361850727d4660df.tar.gz
ferdium-server-0bfd107af07e9cfb32266112361850727d4660df.tar.zst
ferdium-server-0bfd107af07e9cfb32266112361850727d4660df.zip
Upgrade 'node' to '18.18.0' and 'pnpm' to '8.7.6'
-rw-r--r--.nvmrc2
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--Dockerfile4
-rw-r--r--package.json4
4 files changed, 7 insertions, 7 deletions
diff --git a/.nvmrc b/.nvmrc
index 55bffd6..02c8b48 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
18.15.0 18.18.0
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e0e4179..638812a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -49,8 +49,8 @@ Currently, these are the combinations of system dependencies that work for MacOS
49```bash 49```bash
50$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json 50$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json
51{ 51{
52 "node": "18.15.0", 52 "node": "18.18.0",
53 "pnpm": "7.30.0", 53 "pnpm": "8.7.6",
54 "python": "3.11.1" 54 "python": "3.11.1"
55} 55}
56``` 56```
diff --git a/Dockerfile b/Dockerfile
index 26f9c4f..77e1815 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
1FROM node:18.15.0-alpine as build 1FROM node:18.18.0-alpine as build
2 2
3WORKDIR /server-build 3WORKDIR /server-build
4 4
@@ -11,7 +11,7 @@ RUN PNPM_VERSION=$(node -p 'require("./package.json").engines.pnpm'); npm i -g p
11RUN pnpm install --config.build-from-source=sqlite --config.sqlite=/usr/local 11RUN pnpm install --config.build-from-source=sqlite --config.sqlite=/usr/local
12 12
13# ---- RUNTIME IMAGE ---------------------------------------------------------- 13# ---- RUNTIME IMAGE ----------------------------------------------------------
14FROM node:18.15.0-alpine 14FROM node:18.18.0-alpine
15 15
16WORKDIR /app 16WORKDIR /app
17LABEL maintainer="ferdium" 17LABEL maintainer="ferdium"
diff --git a/package.json b/package.json
index 00515d4..cfb8383 100644
--- a/package.json
+++ b/package.json
@@ -5,8 +5,8 @@
5 "description": "Ferdium server to replace the default Franz/Ferdi server.", 5 "description": "Ferdium server to replace the default Franz/Ferdi server.",
6 "main": "index.js", 6 "main": "index.js",
7 "engines": { 7 "engines": {
8 "node": "18.15.0", 8 "node": "18.18.0",
9 "pnpm": "7.30.0", 9 "pnpm": "8.7.6",
10 "python": "3.11.1" 10 "python": "3.11.1"
11 }, 11 },
12 "scripts": { 12 "scripts": {