Skip to content

Commit

Permalink
Revert "use Node.js 18 instead of Node.js 14 in Dockerfile"
Browse files Browse the repository at this point in the history
This reverts commit 4ab8116.
  • Loading branch information
striezel committed May 17, 2024
1 parent 4ab8116 commit 5faf778
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN apt-get update && apt-get upgrade -y && \
ca-certificates \
libfontconfig1
# Node.js is required to run this application.
RUN echo "# Node.js 18.x for Debian 11 (codename bullseye)" > /etc/apt/sources.list.d/nodejs.list \
&& echo "deb https://deb.nodesource.com/node_18.x bullseye main" >> /etc/apt/sources.list.d/nodejs.list \
&& echo "deb-src https://deb.nodesource.com/node_18.x bullseye main" >> /etc/apt/sources.list.d/nodejs.list
RUN echo "# Node.js 14.x for Debian 11 (codename bullseye)" > /etc/apt/sources.list.d/nodejs.list \
&& echo "deb https://deb.nodesource.com/node_14.x bullseye main" >> /etc/apt/sources.list.d/nodejs.list \
&& echo "deb-src https://deb.nodesource.com/node_14.x bullseye main" >> /etc/apt/sources.list.d/nodejs.list
RUN apt-key adv --fetch-keys https://deb.nodesource.com/gpgkey/nodesource.gpg.key
RUN apt-get update && apt-get install --no-install-recommends -y nodejs
# Create directory for application.
Expand Down
5 changes: 0 additions & 5 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ Since [ECharts](https://echarts.apache.org/) is the main dependency of this
application, major version changes in ECharts will also trigger a major version
change in this application.

## Version 5.?.? (2024-05-??)

* __[maintenance]__
Update Dockerfile to use Node.js 18 instead of Node.js 14.

## Version 5.1.2 (2024-03-31)

* __[maintenance]__
Expand Down

0 comments on commit 5faf778

Please sign in to comment.