From a4dc56ab9013cfe953cf77e61a6e0d5ee7bd439e Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Wed, 26 Jun 2024 23:29:47 -0400 Subject: [PATCH] Update Dockerfile to include libgomp1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37440a32fd9..da345c4bb4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ COPY vendor/requirements.txt /usr/src/app/requirements.txt # Install api dependencies RUN apt-get update \ - && apt-get install -y --no-install-recommends dumb-init \ + && apt-get install -y --no-install-recommends dumb-init libgomp1 \ && pip install --no-cache-dir ./api \ && pip install -r /usr/src/app/requirements.txt \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* \