Skip to content

Commit

Permalink
fix(docker): explicitly install node
Browse files Browse the repository at this point in the history
  • Loading branch information
seve authored Jun 29, 2022
1 parent d247926 commit a2e35ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hosted/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ ADD common.mk common.mk
ADD environment.default.json environment.default.json

RUN apt-get update && \
apt-get install -y gettext moreutils build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests python3-aiohttp llvm jq npm git zip && \
apt-get install -y gettext moreutils build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests python3-aiohttp llvm jq npm git zip curl && \
rm -rf /var/lib/apt/lists/*

RUN curl -sL https://deb.nodesource.com/setup_15.14.x | bash -
RUN apt-get -y install nodejs
RUN node -v

RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1

Expand Down

0 comments on commit a2e35ca

Please sign in to comment.