Skip to content

Instantly share code, notes, and snippets.

View aipi's full-sized avatar
❤️
Falling in love

Daniel Moniz aipi

❤️
Falling in love
View GitHub Profile
@nicolasramy
nicolasramy / Dockerfile
Last active April 18, 2019 10:20
How to start a Vue.js + webpack dev stack (webpack is no mandatory ;))
FROM node:7.4-alpine
RUN mkdir /app
WORKDIR /app
ADD . /app/
RUN npm install
EXPOSE 8080