From 81f45f3733b45fa512cc148b229cf0d3cf8037b6 Mon Sep 17 00:00:00 2001 From: Abigail Alexander Date: Thu, 11 Jan 2024 08:34:11 +0000 Subject: [PATCH] Add alpine glibc compatilibility package to dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f1ae269..9a73a89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN pip install ${PIP_OPTIONS} FROM python:3.10-alpine as runtime # Add apt-get system dependecies for runtime here if needed -RUN apk add py3-numpy g++ +RUN apk add py3-numpy g++ gcompat # copy the virtual environment from the build stage and put it in PATH COPY --from=build /venv/ /venv/