File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
sdk/python/feast/infra/feature_servers/multicloud Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,6 @@ RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short |
1616RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
1717RUN apt update
1818RUN apt -y install libarrow-dev
19- RUN mkdir -m 775 /.cache
19+ # modify permissions to support running with a random uid
20+ RUN mkdir -m 775 /.cache
21+ RUN chmod g+w $(python -c "import feast.ui as _; print(_.__path__)" | tr -d "[']" )/build/projects-list.json
Original file line number Diff line number Diff line change @@ -16,4 +16,7 @@ RUN apt install -y -V ca-certificates lsb-release wget
1616RUN 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
1717RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
1818RUN apt update
19- RUN apt -y install libarrow-dev
19+ RUN apt -y install libarrow-dev
20+ # modify permissions to support running with a random uid
21+ RUN mkdir -m 775 /.cache
22+ RUN chmod g+w $(python -c "import feast.ui as _; print(_.__path__)" | tr -d "[']")/build/projects-list.json
You can’t perform that action at this time.
0 commit comments