Skip to content

Commit

Permalink
Pin Squash docker image to a specific version (#5441)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thibaudcolas committed Jul 19, 2019
1 parent 268df8c commit f207b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .squash.yml
Original file line number Diff line number Diff line change
@@ -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 -"
Expand Down

0 comments on commit f207b1c

Please sign in to comment.