diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d5fe77c97f9..35e8300d05b 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -56,3 +56,4 @@ Markus Dick @markusdick Jacek Sawoszczuk @jsawo Dung Nguyen @nhymxu Krzysztof Rewak @krzysztofrewak +Geidson Benicio @geidsonc diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 11a3aaf6efe..79ac55988e8 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -161,6 +161,17 @@ RUN set -ex; \ composer clear-cache; \ rm -rf .composer +# Install node dependencies +RUN set -ex; \ + \ + curl -fsSL https://deb.nodesource.com/setup_14.x | bash -; \ + apt-get install -y nodejs; \ + npm install -g yarn; \ + yarn run inst; \ + yarn run dev; \ + \ + rm -rf /var/lib/apt/lists/* + COPY scripts/docker/entrypoint.sh \ scripts/docker/cron.sh \ scripts/docker/queue.sh \