feat: Update Node.js version to 20 and add build dependencies for better-sqlite3

This commit is contained in:
2025-08-05 07:27:30 +02:00
parent 6aa0a659cc
commit cfbf0dccbb

View File

@@ -1,5 +1,8 @@
# Development Dockerfile (for npm run dev) # Development Dockerfile (for npm run dev)
FROM node:18-alpine FROM node:20-alpine
# Install build dependencies for better-sqlite3
RUN apk add --no-cache python3 make g++
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app