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