From 44db42d2a2181b64779c70e943e3978a18b42c31 Mon Sep 17 00:00:00 2001
From: ghaymah_dev
Date: Mon, 8 Sep 2025 10:27:46 +0000
Subject: [PATCH] Update Dockerfile
---
Dockerfile | 31 ++++++++-----------------------
1 file changed, 8 insertions(+), 23 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 9d193c1..d51419b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
-# Build stage
-FROM node:18-alpine AS builder
+# Use Node.js base image
+FROM node:18-alpine
WORKDIR /app
@@ -8,9 +8,9 @@ COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
# Install dependencies
RUN \
- if [ -f yarn.lock ]; then yarn install; \
+ if [ -f yarn.lock ]; then yarn install --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
- elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i; \
+ elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm install --frozen-lockfile; \
else npm install; \
fi
@@ -20,23 +20,8 @@ COPY . .
# Build the app
RUN npm run build
-# Production stage
-FROM nginx:alpine
+# Expose port 3000 (Next.js default port)
+EXPOSE 3000
-# Copy nginx configuration
-COPY nginx.conf /etc/nginx/nginx.conf
-
-# Create the html directory if it doesn't exist
-RUN mkdir -p /usr/share/nginx/html
-
-# Remove any existing files in html directory
-RUN rm -rf /usr/share/nginx/html/*
-
-# Copy built app from builder stage
-COPY --from=builder /app/.next /usr/share/nginx/html
-
-# Expose port 80
-EXPOSE 80
-
-# Start nginx
-CMD ["nginx", "-g", "daemon off;"]
\ No newline at end of file
+# Start Next.js production server
+CMD ["npm", "start"]
\ No newline at end of file