fix: Create data directory before build

Required for database connection during admin page build
This commit is contained in:
Kunthawat
2026-03-10 13:50:43 +07:00
parent 11d59d78be
commit 299d2128ca

View File

@@ -4,6 +4,9 @@ FROM node:20-alpine AS builder
WORKDIR /app
# Create data directory for database
RUN mkdir -p /app/data
COPY package*.json ./
RUN npm ci