From 7bbc782e5d62020395c41af3f81ac555efd7a9de Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Thu, 9 Feb 2017 22:22:41 +0200 Subject: [PATCH] Fix npm build command. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c3f0cc79..954cd361 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY requirements.txt requirements_dev.txt requirements_all_ds.txt ./ RUN pip install -r requirements.txt -r requirements_dev.txt -r requirements_all_ds.txt COPY . ./ -RUN npm install && npm build && rm -rf node_modules +RUN npm install && npm run build && rm -rf node_modules RUN chown -R redash /app ENTRYPOINT ["/app/bin/docker-entrypoint"]