Skip to content

Commit

Permalink
Update Node version in Dockerfile, json2csv version
Browse files Browse the repository at this point in the history
Updates Node version from 10 to 16 in Dockerfile. Sets a static version (rather than a minimum one) for json2csv in package.json.
  • Loading branch information
lmckusick committed Feb 21, 2023
1 parent 088fcf2 commit 7216fff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN npm install --global publish-release

RUN npm install --global pkg-fetch
#RUN pkg-fetch -n node10 -p win -a x64
RUN pkg-fetch -n node10 -p linux -a x64
RUN pkg-fetch -n node10 -p macos -a x64
RUN pkg-fetch -n node16 -p linux -a x64
RUN pkg-fetch -n node16 -p macos -a x64

RUN npm install --global [email protected]

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"js-yaml": "3.13.1",
"jsforce": "1.9.3",
"json-stable-stringify": "1.0.1",
"json2csv": "^6.0.0-alpha.2",
"json2csv": "6.0.0-alpha.2",
"mustache": "3.0.0",
"nopt": "4.0.1",
"opn": "6.0.0",
Expand Down

0 comments on commit 7216fff

Please sign in to comment.