We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c1935 commit 214a916Copy full SHA for 214a916
sdk/python/feast/infra/feature_servers/aws_lambda/Dockerfile
@@ -9,7 +9,7 @@ COPY protos protos
9
COPY README.md README.md
10
11
# Install Feast for AWS with Lambda dependencies
12
-RUN pip3 install -e 'sdk/python[aws]'
+RUN pip3 install -e 'sdk/python[aws,redis]'
13
RUN pip3 install -r sdk/python/feast/infra/feature_servers/aws_lambda/requirements.txt --target "${LAMBDA_TASK_ROOT}"
14
15
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
sdk/python/setup.py
@@ -78,6 +78,7 @@
78
79
REDIS_REQUIRED = [
80
"redis-py-cluster==2.1.2",
81
+ "hiredis>=2.0.0",
82
]
83
84
AWS_REQUIRED = [
0 commit comments