777 Views
This is a demo of how you can containerize a Vuejs application. .dockerignore Dockerfile # build stage FROM node:latest as build-stage WORKDIR /app COPY package*.json ./ RUN npm install COPY . .
0 comments
Join in on a hand-picked round up of the best .NET articles every day.
Curated by our Moderators and Voted up by our Community. Free.
This is a demo of how you can containerize a Vuejs application. .dockerignore Dockerfile # build stage FROM node:latest as build-stage WORKDIR /app COPY package*.json ./ RUN npm install COPY . .