Compare commits
No commits in common. "ce705efd10a3813596f45d9cdcc01bc2e66b4d5c" and "5e899419a4d0b9a2396ac20a03bb328e2f7b7a7e" have entirely different histories.
ce705efd10
...
5e899419a4
|
|
@ -40,10 +40,12 @@ COPY packages/database ./packages/database
|
||||||
# Copy landing app
|
# Copy landing app
|
||||||
COPY apps/landing ./apps/landing
|
COPY apps/landing ./apps/landing
|
||||||
|
|
||||||
# Build Next.js application from root using pnpm filter
|
# Set working directory to landing
|
||||||
WORKDIR /app
|
WORKDIR /app/apps/landing
|
||||||
|
|
||||||
|
# Build Next.js application
|
||||||
ENV NEXT_TELEMETRY_DISABLED=1
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||||||
RUN pnpm --filter @banatie/landing build
|
RUN pnpm build
|
||||||
|
|
||||||
# Stage 3: Production Runner
|
# Stage 3: Production Runner
|
||||||
FROM node:20-alpine AS runner
|
FROM node:20-alpine AS runner
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,6 @@ const nextConfig: NextConfig = {
|
||||||
images: {
|
images: {
|
||||||
unoptimized: true,
|
unoptimized: true,
|
||||||
},
|
},
|
||||||
eslint: {
|
|
||||||
ignoreDuringBuilds: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default nextConfig;
|
export default nextConfig;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue