| 1234567891011121314151617181920212223242526 |
- # Use an official Node.js runtime as a parent image
- FROM node:20-alpine
- # Set the working directory in the container
- WORKDIR /app
- # Copy package.json and package-lock.json to the working directory
- COPY package*.json ./
- # Install any needed packages
- RUN npm install
- # Bundle app source
- COPY . .
- # Build the app
- RUN npm run build
- # Install serve to run the app
- RUN npm install -g serve
- # Expose the port the app runs on
- EXPOSE 3000
- # Run the app
- CMD ["serve", "-s", "dist"]
|