-
Notifications
You must be signed in to change notification settings - Fork 97
Update NodeJS + Haskell version #1470
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
Changes from all commits
6aa773d
ac1e27b
c95d015
2a5985b
2290dfa
293d1b2
ff39cd4
d890d08
cc56205
4f83c17
12c0be7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -20,7 +20,7 @@ ARG UBUNTU_RELEASE | |||
|
|
||||
| ARG DEBIAN_FRONTEND=noninteractive | ||||
|
|
||||
| ENV NODE_VERSION=v18.17.0 | ||||
| ENV NODE_VERSION=v22.13.1 | ||||
| ENV JAVA_VERSION=11.0.11.hs-adpt | ||||
| ENV GRADLE_VERSION=7.1.1 | ||||
| ENV CC=gcc-7 | ||||
|
|
@@ -79,10 +79,10 @@ RUN \ | |||
| imagemagick \ | ||||
| enchant \ | ||||
| clang-format-6.0 \ | ||||
| python3.7 python3.7-dev python3.7-distutils \ | ||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Python 3.7 and python 3.8 are now at EOL |
||||
| python3 python3-dev python3-distutils \ | ||||
| python3.9 python3.9-dev python3.9-distutils \ | ||||
| python3.10 python3.10-dev python3.10-distutils \ | ||||
| python3.11 python3.11-dev python3.11-distutils \ | ||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've included python 3.11 since its the latest python version that the Ubuntu Focal offers |
||||
| dpkg-dev \ | ||||
| cmake \ | ||||
| libjson-perl \ | ||||
|
|
@@ -108,7 +108,7 @@ ENV NVM_DIR=/opt/nvm | |||
|
|
||||
| RUN \ | ||||
| mkdir -p $NVM_DIR \ | ||||
| && curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.38.0/install.sh | bash \ | ||||
| && curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.40.1/install.sh | bash \ | ||||
| && . $NVM_DIR/nvm.sh \ | ||||
| && nvm install $NODE_VERSION | ||||
|
|
||||
|
|
@@ -154,7 +154,7 @@ USER dockerdev | |||
|
|
||||
| RUN \ | ||||
| if [ "$(ls /tmp)" ]; then ls /tmp; false; fi \ | ||||
| && stack install --resolver lts-10.10 sbp \ | ||||
| && stack install --resolver lts-14.9 sbp \ | ||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keeping the same version as Haskell build stage Line 1 in 9daf121
we currently need a version that is greater than v12 |
||||
| && rm -rf /tmp/* | ||||
|
|
||||
| CMD ["make", "all"] | ||||
|
|
||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed to regenerate after updating the NodeJS version |
Large diffs are not rendered by default.

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.
Using the latest NodeJS TLS