From 27c686013d4f86968dc01f63faafa56e6be22cd4 Mon Sep 17 00:00:00 2001 From: Marcin Sobczyk <msobczyk@syncad.com> Date: Fri, 12 May 2023 17:56:25 +0200 Subject: [PATCH] Add c++ compiler to tox test runner needed when installing pip packages --- Dockerfile.tox-test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.tox-test-runner b/Dockerfile.tox-test-runner index 69335b4..1a48917 100644 --- a/Dockerfile.tox-test-runner +++ b/Dockerfile.tox-test-runner @@ -3,7 +3,7 @@ FROM python:3.11.0-alpine3.17 RUN <<-EOF # Install system dependencies - apk add --no-cache bash git curl + apk add --no-cache bash git curl gcc g++ # Install Python dependencies pip3 install tox -- GitLab