File tree Expand file tree Collapse file tree
sdk/python/feast/infra/feature_servers/multicloud Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM python:3.11
2-
1+ FROM debian:11-slim
32RUN apt update && \
43 apt install -y \
54 jq \
5+ python3 \
6+ python3-pip \
67 python3-dev \
78 build-essential
89
@@ -18,4 +19,4 @@ RUN apt update
1819RUN apt -y install libarrow-dev
1920# modify permissions to support running with a random uid
2021RUN mkdir -m 775 /.cache
21- RUN chmod g+w $(python -c "import feast.ui as _; print(_.__path__)" | tr -d "[']" )/build/projects-list.json
22+ RUN chmod g+w $(python3 -c "import feast.ui as _; print(_.__path__)" | tr -d "[']" )/build/projects-list.json
Original file line number Diff line number Diff line change 1- FROM python:3.11
1+ FROM debian:11-slim
22
33RUN apt update && \
44 apt install -y \
55 jq \
6+ python3 \
7+ python3-pip \
68 python3-dev \
79 build-essential
810
@@ -19,4 +21,4 @@ RUN apt update
1921RUN apt -y install libarrow-dev
2022# modify permissions to support running with a random uid
2123RUN mkdir -m 775 /.cache
22- RUN chmod g+w $(python -c "import feast.ui as _; print(_.__path__)" | tr -d "[']")/build/projects-list.json
24+ RUN chmod g+w $(python3 -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