UNPKG

210 BPlain TextView Raw
1FROM node:7.4.0
2
3# Create vueform directory.
4RUN mkdir /srv/vueform
5WORKDIR /srv/vueform
6
7# Install dependencies.
8RUN npm install yarn -g
9COPY . /srv/vueform
10RUN yarn
11
12EXPOSE 8080
13
14CMD [ "npm", "run", "test" ]