From 44efc6edab0a811e2d8c6d8b559e066307cbbe42 Mon Sep 17 00:00:00 2001 From: Paul Yu Date: Fri, 2 Aug 2024 23:14:59 -0700 Subject: [PATCH] fix: ai-service container build --- src/ai-service/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ai-service/Dockerfile b/src/ai-service/Dockerfile index 4433df38..10e647a9 100644 --- a/src/ai-service/Dockerfile +++ b/src/ai-service/Dockerfile @@ -1,6 +1,10 @@ # Use the official Python image as the base image FROM python:3.12.4-alpine +# Install the required system packages +RUN apk update && \ + apk add --no-cache gcc musl-dev libffi-dev + # Set the working directory to /app WORKDIR /app