Compare commits

..

2 Commits

Author SHA1 Message Date
Oleg Proskurin ce705efd10 remove prettier 2025-12-15 00:34:54 +07:00
Oleg Proskurin 59874d9437 fix docker 2025-12-15 00:34:45 +07:00
2 changed files with 6 additions and 5 deletions

View File

@ -40,12 +40,10 @@ COPY packages/database ./packages/database
# Copy landing app
COPY apps/landing ./apps/landing
# Set working directory to landing
WORKDIR /app/apps/landing
# Build Next.js application
# Build Next.js application from root using pnpm filter
WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1
RUN pnpm build
RUN pnpm --filter @banatie/landing build
# Stage 3: Production Runner
FROM node:20-alpine AS runner

View File

@ -5,6 +5,9 @@ const nextConfig: NextConfig = {
images: {
unoptimized: true,
},
eslint: {
ignoreDuringBuilds: true,
},
};
export default nextConfig;