-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump nodejs to 6.11.0 LTS #2078
Closed
Closed
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0b872b0
bump nodejs to LTS 6.10.x
0b8adf5
testing 6.10.2-rc1
7b86050
update npm packages
0fb3e3f
ignore .class
4affcb3
update packages
b3fc602
remove build.xml from .dockerignore
03b9084
update nodejs npm package sin references.md
89bc3c8
revert .gitignore
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -41,6 +41,7 @@ node_modules | |
|
||
# IntelliJ | ||
.idea | ||
*.class | ||
|
||
# Ansible | ||
ansible/environments/docker-machine/hosts | ||
|
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,78 +1,74 @@ | ||
FROM nodejsactionbase | ||
|
||
# based on https://github.com/nodejs/docker-node | ||
ENV NODE_VERSION 6.9.1 | ||
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \ | ||
ENV NODE_VERSION 6.11.0 | ||
ENV NODE_URL_DOWNLOAD https://nodejs.org/dist | ||
|
||
RUN curl -SLO "$NODE_URL_DOWNLOAD/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \ | ||
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \ | ||
&& rm "node-v$NODE_VERSION-linux-x64.tar.gz" | ||
|
||
|
||
# workaround for this: https://github.com/npm/npm/issues/9863 | ||
RUN cd $(npm root -g)/npm \ | ||
&& npm install fs-extra \ | ||
&& sed -i -e s/graceful-fs/fs-extra/ -e s/fs\.rename/fs\.move/ ./lib/utils/rename.js | ||
|
||
WORKDIR /nodejsAction | ||
|
||
# Install app dependencies | ||
RUN rm -rf .project .settings build.xml Dockerfile README node_modules logs | ||
RUN npm install . | ||
|
||
RUN npm install \ | ||
[email protected].2 \ | ||
async@2.1.4 \ | ||
body-parser@1.15.2 \ | ||
[email protected].4 \ | ||
async@2.5.0 \ | ||
body-parser@1.17.2 \ | ||
[email protected] \ | ||
[email protected] \ | ||
cloudant@1.6.2 \ | ||
commander@2.9.0 \ | ||
consul@0.27.0 \ | ||
cloudant@1.8.0 \ | ||
commander@2.10.0 \ | ||
consul@0.29.0 \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
express@4.14.0 \ | ||
express-session@1.14.2 \ | ||
[email protected].1 \ | ||
express@4.15.3 \ | ||
express-session@1.15.3 \ | ||
[email protected].2 \ | ||
[email protected] \ | ||
[email protected].2 \ | ||
log4js@0.6.38 \ | ||
[email protected].15 \ | ||
[email protected].4 \ | ||
log4js@1.1.1 \ | ||
[email protected].18 \ | ||
[email protected] \ | ||
[email protected] \ | ||
moment@2.17.0 \ | ||
[email protected].11 \ | ||
moment@2.18.1 \ | ||
[email protected].29 \ | ||
[email protected] \ | ||
nano@6.2.0 \ | ||
[email protected].7 \ | ||
nodemailer@2.6.4 \ | ||
nano@6.3.0 \ | ||
[email protected].8 \ | ||
nodemailer@4.0.1 \ | ||
[email protected] \ | ||
openwhisk@3.3.2 \ | ||
openwhisk@3.6.0 \ | ||
[email protected] \ | ||
[email protected].9 \ | ||
pug@">=2.0.0-beta6 <2.0.1" \ | ||
redis@2.6.3 \ | ||
request@2.79.0 \ | ||
request-promise@4.1.1 \ | ||
rimraf@2.5.4 \ | ||
[email protected].10 \ | ||
pug@">=2.0.0-beta11 <2.0.1" \ | ||
redis@2.7.1 \ | ||
request@2.81.0 \ | ||
request-promise@4.2.1 \ | ||
rimraf@2.6.1 \ | ||
[email protected] \ | ||
sendgrid@4.7.1 \ | ||
serve-favicon@2.3.2 \ | ||
socket.io@1.6.0 \ | ||
socket.io-client@1.6.0 \ | ||
superagent@3.0.0 \ | ||
sendgrid@5.1.1 \ | ||
serve-favicon@2.4.3 \ | ||
socket.io@2.0.3 \ | ||
socket.io-client@2.0.3 \ | ||
superagent@3.5.2 \ | ||
[email protected] \ | ||
[email protected] \ | ||
twilio@2.11.1 \ | ||
twilio@3.4.0 \ | ||
[email protected] \ | ||
uuid@3.0.0 \ | ||
validator@6.1.0 \ | ||
watson-developer-cloud@2.29.0 \ | ||
[email protected].7 \ | ||
[email protected].0 \ | ||
ws@1.1.1 \ | ||
uuid@3.1.0 \ | ||
validator@7.2.0 \ | ||
watson-developer-cloud@2.32.1 \ | ||
[email protected].8 \ | ||
[email protected].1 \ | ||
ws@3.0.0 \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] | ||
[email protected] \ | ||
--save-exact \ | ||
&& npm cache clean | ||
|
||
# See app.js | ||
CMD node --expose-gc app.js |
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,2 +1,8 @@ | ||
Dockerfile | ||
build.gradle | ||
.project | ||
.settings | ||
build.xml | ||
README | ||
node_modules | ||
logs |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can safely remove this, we're not using
ant
anymore.