Fix Docker build: exclude .config file and simplify Dockerfile
All checks were successful
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 3m11s

This commit is contained in:
2026-03-25 18:00:09 +00:00
parent 6f2f022cb9
commit ee0268d9f6
2 changed files with 3 additions and 3 deletions

View File

@@ -26,6 +26,9 @@ yarn-error.log*
.DS_Store
Thumbs.db
# Infrastructure files (JuiceFS config, etc.)
.config
# Environment files
.env
.env.local

View File

@@ -19,9 +19,6 @@ RUN bun install --frozen-lockfile
# Copy the rest of the application
COPY . .
# Create Prisma config directory to prevent config lookup error in Prisma 6
RUN mkdir -p /app/.config/prisma
# Set environment variables for build
ENV NEXT_TELEMETRY_DISABLED=1
ENV NODE_ENV=production