Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ARG UBUNTU_RELEASE

ARG DEBIAN_FRONTEND=noninteractive

ENV NODE_VERSION=v18.17.0
ENV NODE_VERSION=v22.13.1
Copy link
Contributor Author

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

ENV JAVA_VERSION=11.0.11.hs-adpt
ENV GRADLE_VERSION=7.1.1
ENV CC=gcc-7
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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 \
Copy link
Contributor Author

@RReichert RReichert Feb 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keeping the same version as Haskell build stage

resolver: lts-14.9

we currently need a version that is greater than v12

&& rm -rf /tmp/*

CMD ["make", "all"]
Expand Down
17 changes: 2 additions & 15 deletions javascript/sbp.bundle.js
Copy link
Contributor Author

Choose a reason for hiding this comment

The 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.

Loading
Loading