Skip to content

Commit

Permalink
Update node_version in igbuild image also
Browse files Browse the repository at this point in the history
  • Loading branch information
jmandel committed Nov 29, 2023
1 parent c757dce commit 4b5ccda
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions images/ig-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
FROM openjdk:21-jdk-bullseye
MAINTAINER Josh Mandel

RUN apt-get update && apt-get -y install python3 python3-pip gosu openssl wget graphviz ruby2.7 ruby2.7-dev inotify-tools && apt-get clean
RUN pip3 install --upgrade requests zulip
RUN gem install jekyll jekyll-asciidoc

RUN cd /tmp && \
wget --quiet https://nodejs.org/dist/v18.17.1/node-v18.17.1-linux-x64.tar.xz && \
cd /usr/local && \
tar --strip-components 1 -xf /tmp/node-v18.17.1-linux-x64.tar.xz
LABEL maintainer="Josh Mandel"

ENV NODE_VERSION=v18.18.2
RUN apt-get update && \
apt-get -y install python3 python3-pip gosu openssl wget graphviz ruby2.7 ruby2.7-dev inotify-tools && \
apt-get clean && \
pip3 install --upgrade requests zulip && \
gem install jekyll jekyll-asciidoc && \
cd /tmp && \
wget --quiet https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz && \
cd /usr/local && \
tar --strip-components 1 -xf /tmp/node-${NODE_VERSION}-linux-x64.tar.xz

ADD watch-and-publish /usr/local/bin/watch-and-publish
ADD publish /usr/local/bin/publish
Expand Down

0 comments on commit 4b5ccda

Please sign in to comment.