From 2a1d5b606555838a71f8229fa269e1c2c6e8c1a3 Mon Sep 17 00:00:00 2001 From: Evandro Miquelito <98694+emiquelito@users.noreply.github.com> Date: Wed, 20 Mar 2019 11:26:01 -0600 Subject: [PATCH] update squash.yml file to run pip install for the current branch --- .squash.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.squash.yml b/.squash.yml index cbd06a2a3f..38eab92c41 100644 --- a/.squash.yml +++ b/.squash.yml @@ -2,9 +2,14 @@ deployments: default: dockerimage: python:latest build_steps: - - apt-get update && apt-get install -y libssl-dev libpq-dev git build-essential libfontconfig1 libfontconfig1-dev + - apt-get update && apt-get install -y libssl-dev libpq-dev git build-essential libfontconfig1 libfontconfig1-dev curl + - RUN bash -c "curl -sL https://deb.nodesource.com/setup_8.x | bash -" + - apt install -y nodejs + - cd /code + - npm install + - npm run dist - pip install setuptools pip --upgrade --force-reinstall - - pip install wagtail + - pip install /code - mkdir /myproject - cd /myproject - wagtail start mysite