From 9efb243c548b075ca8288e04b09b84a9fa49dc7c Mon Sep 17 00:00:00 2001 From: Tommy Hughes IV Date: Thu, 11 Apr 2024 18:17:24 -0500 Subject: [PATCH] fix: Feature Server image startup in OpenShift clusters (#4096) create necessary feature server dir(s) during image build Signed-off-by: Tommy Hughes --- sdk/python/feast/infra/feature_servers/multicloud/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile index 5d2d425cda..1a55c6e851 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile +++ b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile @@ -18,4 +18,5 @@ RUN apt install -y -V ca-certificates lsb-release wget RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb RUN apt update -RUN apt -y install libarrow-dev \ No newline at end of file +RUN apt -y install libarrow-dev +RUN mkdir -m 775 /.cache \ No newline at end of file