diff --git a/assets/Dockerfile b/assets/Dockerfile index 41b72e27..6aaecfce 100644 --- a/assets/Dockerfile +++ b/assets/Dockerfile @@ -1,5 +1,5 @@ ARG KONG_BASE -FROM ${KONG_BASE} +FROM debian:buster # add dev files ARG KONG_DEV_FILES @@ -56,6 +56,12 @@ RUN if [ -n "$PONGO_INSECURE" ] || [ "$PONGO_INSECURE" != "false" ]; then \ git config --global http.sslVerify false; \ fi +# install rust toolchain +RUN curl https://sh.rustup.rs -sSf | \ + sh -s -- --default-toolchain stable -y + +ENV PATH=/root/.cargo/bin:$PATH + RUN /pongo/install-python.sh RUN pip3 install httpie || echo -e "\n\n\nFailed installing httpie, continuing without.\n\n\n" RUN curl -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