File size: 474 Bytes
6ffe1f8 ceb71d3 ac695f9 ceb71d3 257e33d ceb71d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Use the official Node.js 18 image as base
FROM node:18.17.0-alpine as builder
# Set working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json to install dependencies
COPY package.json .
COPY package-lock.json .
# Install dependencies
RUN npm install
# Copy the rest of the application code
COPY . .
# Build the Next.js project
RUN npm run build
# Expose port 3000
EXPOSE 3000
# Start the Next.js application
CMD ["npm", "start"]
|