NAS deployment fixed

This commit is contained in:
aodulov
2025-12-18 13:03:12 +02:00
parent 97b4e5de32
commit e9aec9a65d
14 changed files with 278 additions and 76 deletions

12
Dockerfile.node-apps Normal file
View File

@@ -0,0 +1,12 @@
FROM node:lts-slim
# Install build dependencies for better-sqlite3 and other native modules
RUN apt-get update && apt-get install -y \
python3 \
build-essential \
openssl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /usr/src/app