aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2024-01-08 00:39:10 +0000
committerLibravatar GitHub <noreply@github.com>2024-01-08 00:39:10 +0000
commitc327818ce984861d32322c48de3eea3ce6a787b2 (patch)
tree42cb45b8374c6cf538d2035887fb74436d37ab1b
parent2.0.4 [skip ci] (diff)
downloadferdium-server-c327818ce984861d32322c48de3eea3ce6a787b2.tar.gz
ferdium-server-c327818ce984861d32322c48de3eea3ce6a787b2.tar.zst
ferdium-server-c327818ce984861d32322c48de3eea3ce6a787b2.zip
Sync update node and pnpm (#92)
-rw-r--r--.nvmrc2
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--Dockerfile4
-rw-r--r--package.json8
4 files changed, 8 insertions, 8 deletions
diff --git a/.nvmrc b/.nvmrc
index 02c8b48..f3f52b4 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
18.18.0 20.9.0
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 638812a..2e93c39 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -49,7 +49,7 @@ 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.18.0", 52 "node": "20.9.0",
53 "pnpm": "8.7.6", 53 "pnpm": "8.7.6",
54 "python": "3.11.1" 54 "python": "3.11.1"
55} 55}
diff --git a/Dockerfile b/Dockerfile
index ea36dd6..a53c0c5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
1FROM node:18.18.0-alpine as build 1FROM node:20.9.0-alpine as build
2 2
3WORKDIR /server-build 3WORKDIR /server-build
4 4
@@ -12,7 +12,7 @@ RUN pnpm install --config.build-from-source=sqlite --config.sqlite=/usr/local
12RUN pnpm build 12RUN pnpm build
13 13
14# ---- RUNTIME IMAGE ---------------------------------------------------------- 14# ---- RUNTIME IMAGE ----------------------------------------------------------
15FROM node:18.18.0-alpine 15FROM node:20.9.0-alpine
16 16
17WORKDIR /app 17WORKDIR /app
18LABEL maintainer="ferdium" 18LABEL maintainer="ferdium"
diff --git a/package.json b/package.json
index 81a3e86..50fa1a8 100644
--- a/package.json
+++ b/package.json
@@ -3,14 +3,14 @@
3 "version": "2.0.4", 3 "version": "2.0.4",
4 "description": "Ferdium server to replace the default Franz/Ferdi server.", 4 "description": "Ferdium server to replace the default Franz/Ferdi server.",
5 "engines": { 5 "engines": {
6 "node": "18.18.0", 6 "node": "20.9.0",
7 "pnpm": "8.7.6", 7 "pnpm": "^8.10.0",
8 "python": "3.11.1" 8 "python": "3.11.1"
9 }, 9 },
10 "engine-strict": true, 10 "engine-strict": true,
11 "volta": { 11 "volta": {
12 "node": "18.18.0", 12 "node": "20.9.0",
13 "pnpm": "8.7.6", 13 "pnpm": "^8.10.0",
14 "python": "3.11.1" 14 "python": "3.11.1"
15 }, 15 },
16 "homepage": "https://github.com/ferdium/ferdium-server", 16 "homepage": "https://github.com/ferdium/ferdium-server",