From 7d68c23ce56fa5199024938aa457be4ad09ddfab Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 18 Feb 2022 08:48:44 -0800 Subject: [PATCH] Updates dev tools --- bw-dev | 2 +- dev-tools/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bw-dev b/bw-dev index ca0b538c1..dad3896d6 100755 --- a/bw-dev +++ b/bw-dev @@ -101,7 +101,7 @@ case "$CMD" in docker-compose restart celery_worker ;; pytest) - runweb --no-deps pytest --no-cov-on-fail "$@" + runweb pytest --no-cov-on-fail "$@" ;; collectstatic) runweb python manage.py collectstatic --no-input diff --git a/dev-tools/Dockerfile b/dev-tools/Dockerfile index 3983f2f06..7cadfecb9 100644 --- a/dev-tools/Dockerfile +++ b/dev-tools/Dockerfile @@ -10,5 +10,5 @@ RUN pip install -r requirements.txt RUN apt-get update && apt-get install -y curl RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - -RUN apt-get install -y nodejs +RUN apt-get install -y nodejs && apt-get clean RUN npm install .