Fix: permission

This commit is contained in:
2025-12-19 23:11:53 +09:00
parent a879ee84bf
commit f8c8291674
+2 -1
View File
@@ -1,8 +1,9 @@
# Load Node.js # Load Node.js
FROM --platform=$BUILDPLATFORM node:20-bullseye-slim FROM --platform=$BUILDPLATFORM node:20-bullseye-slim
# Set working directory # Set working directory & Set owner
WORKDIR /app WORKDIR /app
RUN chown -R node:node /app
# Run as root & package install # Run as root & package install
USER root USER root