From f207b1c11f7edadd0290b62788d7f262ae5a9c78 Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Fri, 19 Jul 2019 18:50:25 +0100 Subject: [PATCH] Pin Squash docker image to a specific version (#5441) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent builds have been breaking due to the following error: `/post_build.sh: line 2: npm: command not found`. I’m not entirely sure this is the fix, but it looks like this `latest` tag is now resolving to `3.7.4-buster` (https://hub.docker.com/_/python). Debian Buster got released 2 weeks ago. It feels safer to have a pinned dependency, and Stretch is probably what it was resolving to before. --- .squash.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.squash.yml b/.squash.yml index b452f10fd3..9a0721594f 100644 --- a/.squash.yml +++ b/.squash.yml @@ -1,6 +1,6 @@ deployments: default: - dockerimage: python:latest + dockerimage: python:3.7.4-stretch build_steps: - 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 -"