Vuejs in Docker

added by DotNetKicks
5/15/2021 11:09:30 PM

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