Skip to content
Snippets Groups Projects
Commit bf326c3f authored by mjpsoohoo's avatar mjpsoohoo
Browse files

Merge remote-tracking branch 'origin/main'

parents db170e74 c7418343
No related branches found
No related tags found
No related merge requests found
# Use the official Node.js 18 image as a base
FROM node:18-alpine
WORKDIR /app
COPY package.json .
COPY package-lock.json .
# Install dependencies
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
# Command to run the Next.js application
CMD ["npm", "start"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment