Compare commits

..

No commits in common. "ce705efd10a3813596f45d9cdcc01bc2e66b4d5c" and "5e899419a4d0b9a2396ac20a03bb328e2f7b7a7e" have entirely different histories.

2 changed files with 5 additions and 6 deletions

View File

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

View File

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