From 59834935f116dce106fdf9fb98e44a6f646f5eba Mon Sep 17 00:00:00 2001 From: Konrad Botor <kbotor@syncad.com> Date: Fri, 26 May 2023 12:54:51 +0200 Subject: [PATCH] Added musl-dev to tox-test-runner --- 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 c59c570..5e35397 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 gcc + apk add --no-cache bash git curl gcc musl-dev # Install Python dependencies pip3 install tox -- GitLab