From 5458fdc4a1e43ae28d3c35147acc7fccfed728bc Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Fri, 13 May 2022 15:19:12 +0200 Subject: [PATCH] fix(httpie) python3-dev package required to build httpie --- README.md | 2 ++ assets/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ddac7f65..10c7dc96 100644 --- a/README.md +++ b/README.md @@ -779,6 +779,8 @@ The result should be a new PR on the Pongo repo. ### unreleased + * add `python3-dev` package to fix the `httpie` installation + * the `--debug` flag now also sets docker build command to `--progress plain` for easier debugging of the build. It also does `set -x` so be careful not to copy-paste secrets somewhere!! diff --git a/assets/Dockerfile b/assets/Dockerfile index 38597ea7..dbb49f4e 100644 --- a/assets/Dockerfile +++ b/assets/Dockerfile @@ -28,7 +28,7 @@ USER root # But that means hardcoding and that doesn't play well with the nature of Pongo # that should be independent of Kong versions. RUN apk update \ - && apk add zip unzip make g++ py-pip jq git bsd-compat-headers m4 openssl-dev curl \ + && apk add zip unzip make g++ py-pip jq git bsd-compat-headers m4 openssl-dev curl python3-dev \ && curl -k -s -S -L https://github.com/fullstorydev/grpcurl/releases/download/v1.7.0/grpcurl_1.7.0_linux_x86_64.tar.gz | tar xz -C /kong/bin \ && pip install httpie \ ; cd /kong \