fix(docker) : update dependencies

For further compatibility and ease of usage, additional dependencies
like `g++` and `make` is included, which may be needed for certain
plugins. In addition, the default node version is 12 in `ubuntu:latest`,
this issue is handled by manual installation of node18.
pull/186/head
Tuna Alikaşifoğlu 2 years ago
parent 66959da23e
commit 4814ef033b
No known key found for this signature in database
GPG Key ID: 16FE1DF5037D8B61

@ -1,18 +1,26 @@
FROM ubuntu:latest
# Install dependencies
RUN apt update && apt install -y \
RUN apt update && apt upgrade -y
RUN apt install -y \
curl \
wget \
make \
g++ \
gzip \
unzip \
git \
npm \
python3 \
python3-venv \
cargo \
ripgrep \
fd-find
RUN apt remove -y nodejs npm && \
curl -sL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh && \
bash nodesource_setup.sh && \
apt install -y nodejs
# Installation Settings
# branch can be nightly
ENV BRANCH=stable

Loading…
Cancel
Save