From b539ebaad5ec2c1a199fe08ceccd206754ce82f0 Mon Sep 17 00:00:00 2001 From: Tommy Hughes IV Date: Fri, 20 Dec 2024 15:21:54 -0600 Subject: [PATCH] feat: Add duckdb extra to multicloud release image (#4862) add duckdb extra to multicloud release image Signed-off-by: Tommy Hughes --- sdk/python/feast/infra/feature_servers/multicloud/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile index c1da48f55d..b4d7b5e3e9 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile +++ b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.11-slim-bullseye RUN pip install --no-cache-dir pip --upgrade -RUN pip install --no-cache-dir "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s]" +RUN pip install --no-cache-dir "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s,duckdb]" RUN apt update && apt install -y -V ca-certificates lsb-release wget && \