Skip to content
This repository has been archived by the owner on May 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #20 from wilcorrea-forks/master
Browse files Browse the repository at this point in the history
[feature] Define the version of node in Dockerfile
  • Loading branch information
wilcorrea authored Mar 25, 2019
2 parents 0ad5268 + 6cd5c6b commit 00e9eb1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM node:alpine
FROM node:10-alpine

RUN apk --update add openssh-client git

# https://www.npmjs.com/package/@vue/cli
# https://www.npmjs.com/package/@vue/cli-init
RUN npm install -g vue-cli && \
npm install -g @vue/[email protected] && \
npm install -g @vue/[email protected]
RUN npm install --global\
vue-cli\
@vue/[email protected]\
@vue/[email protected]

# https://www.npmjs.com/package/@quasar/cli
# https://www.npmjs.com/package/http-server
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ node_js:
- 10

install:
- npm install --global vue-cli @vue/[email protected] @vue/[email protected]
- npm install --global @vue/[email protected] @vue/[email protected]
- npm install --global @quasar/[email protected]
- yarn install
deploy:
Expand Down

0 comments on commit 00e9eb1

Please sign in to comment.