From 7b34895903872bbc67e994ab6cb925d94bedb412 Mon Sep 17 00:00:00 2001 From: Gabriel Dutra Date: Thu, 8 Oct 2020 22:30:29 -0300 Subject: [PATCH] Remove build args from Cypress start script --- client/cypress/cypress.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/cypress/cypress.js b/client/cypress/cypress.js index 5888acacff..44f8010e72 100644 --- a/client/cypress/cypress.js +++ b/client/cypress/cypress.js @@ -44,9 +44,7 @@ function seedDatabase(seedValues) { function buildServer() { console.log("Building the server..."); - execSync("docker-compose -p cypress build --build-arg skip_dev_deps=true --build-arg skip_ds_deps=true", { - stdio: "inherit", - }); + execSync("docker-compose -p cypress build", { stdio: "inherit" }); } function startServer() {