From 31ce5c182697d7988e2ac1abe68f3dfde6667df8 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Wed, 7 Mar 2018 12:38:29 +0200 Subject: [PATCH] Run the webpack build in the docker image too --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c72e67902..1e3a262ce4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ RUN npm install COPY . /usr/src/app # Run the tests and build, to make sure everything is working nicely -RUN npm run build && npm run test +RUN npm run build && npm run webpack && npm run test