This repository has been archived by the owner on May 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from wilcorrea-forks/master
[feature] Define the version of node in Dockerfile
- Loading branch information
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|