From 9eff88766966b159ab29bbb9ad81670fb2d7357a Mon Sep 17 00:00:00 2001 From: andersbl Date: Thu, 24 Nov 2022 20:48:52 +0100 Subject: [PATCH] gcc is required gcc is required and not available by the image by default. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6fbfdfb..3b99a2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.10.6-slim -RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 +RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 gcc ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \ PIP_ROOT_USER_ACTION=ignore