You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#mcplaza@MARCELO-PC:/mnt/j/dev/portfolio$ docker build -t mcp_webappdk /mnt/j/dev/Portfolio/mcp_webapp from the directory mcplaza@MARCELO-PC:/mnt/j/dev/portfolio$
FROM node: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 dependencies
RUN npm install
# Copy the rest of the application files
COPY . .
# Build the application (replace 'npm run build' with your build command)
RUN npm run build
# Expose the port (if your app runs on a specific port)