From 55012fd88749dc9c0f088e550df96cef0d4c0edc Mon Sep 17 00:00:00 2001 From: jhM00n Date: Sun, 19 May 2024 20:45:09 +0900 Subject: [PATCH] update lambda --- inference/template_code/Dockerfile.lambda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference/template_code/Dockerfile.lambda b/inference/template_code/Dockerfile.lambda index 76c3363268..a4289ed4f0 100644 --- a/inference/template_code/Dockerfile.lambda +++ b/inference/template_code/Dockerfile.lambda @@ -4,7 +4,7 @@ COPY requirements_lambda.txt ${LAMBDA_TASK_ROOT}/requirements.txt RUN pip3 install --no-cache-dir -r requirements.txt -RUN dnf update -y && dnf install -y dnf-utils wget unzip && dnf clean all && rm -rf /var/cache/dnf +RUN yum update -y && yum install -y wget unzip && yum clean all && rm -rf /var/cache/yum COPY lambda_app.py ${LAMBDA_TASK_ROOT}/app.py