Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arthurgermano/nodevue

DockerFile of nodevue image with serve and workbox packages
https://github.com/arthurgermano/nodevue

Last synced: about 2 months ago
JSON representation

DockerFile of nodevue image with serve and workbox packages

Awesome Lists containing this project

README

        

# nodevue
DockerFile of nodevue image with serve and workbox packages

Node 11.3
Vue-cli 3.2.1
Serve 10.1.1
Workbox 3.6.3

Based on image provide by https://github.com/mhart/alpine-node

TO RUN
docker container run --rm -it --network host -v $(pwd):/app arthurgermano/nodevue /bin/ash

THEN
Inside the container you have access to your present work directory just run your commands!

# Configuring repository
RUN npm config set registry http://registry.npmjs.org

If you're not using privoxy then you have to execute this lines above to your proxy!

TO BUILD
docker build --progress plain --network host --tag nodevue .

Obs: Execute this command where Dockerfile is!