From 454e86db9c164b341a47509d30e8f548d52d01f6 Mon Sep 17 00:00:00 2001 From: Michael Duong Date: Tue, 4 Nov 2025 14:34:58 +0000 Subject: [PATCH] change the MPLCONFIGDIR to /tmp/matplotlib --- deployment/Dockerfile.prediction.lambda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/Dockerfile.prediction.lambda b/deployment/Dockerfile.prediction.lambda index ca21a8e..6d226dc 100644 --- a/deployment/Dockerfile.prediction.lambda +++ b/deployment/Dockerfile.prediction.lambda @@ -3,7 +3,7 @@ FROM public.ecr.aws/lambda/python:3.12 # Set the working directory WORKDIR ${LAMBDA_TASK_ROOT} ENV PYTHONPATH="${PYTHONPATH}:${LAMBDA_TASK_ROOT}" -ENV MPLCONFIGDIR="${LAMBDA_TASK_ROOT}/tmp/matplotlib" +ENV MPLCONFIGDIR="/tmp/matplotlib" # Environment variables ARG RUNTIME_ENVIRONMENT