From: Jarek Radosz Date: Fri, 29 Apr 2022 10:18:10 +0000 (+0200) Subject: DEV: Don't install eslint and babel-eslint (#624) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7abc94aec8f60c6ba606322485a1b63e211010bc;p=discourse_docker.git DEV: Don't install eslint and babel-eslint (#624) Core has eslint in its dependencies, so there's no need for global eslint as far I can tell. --- diff --git a/image/discourse_dev/Dockerfile b/image/discourse_dev/Dockerfile index 8967a66..96373b2 100644 --- a/image/discourse_dev/Dockerfile +++ b/image/discourse_dev/Dockerfile @@ -38,8 +38,7 @@ ADD ensure-database /etc/runit/1.d/ensure-database RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - &&\ echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list &&\ apt update &&\ - apt install -y google-chrome-stable firefox-esr &&\ - npm install -g eslint babel-eslint + apt install -y google-chrome-stable firefox-esr # Install & Configure MailHog (https://github.com/mailhog/MailHog) RUN wget -qO /tmp/mailhog https://github.com/mailhog/MailHog/releases/download/v1.0.1/MailHog_linux_amd64\