Commit 0390d8a 1 parent 9ac7f4e commit 0390d8a Copy full SHA for 0390d8a
File tree 2 files changed +8
-5
lines changed
sdk/python/feast/infra/feature_servers/multicloud
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.11
2
-
1
+ FROM debian:11-slim
3
2
RUN apt update && \
4
3
apt install -y \
5
4
jq \
5
+ python3 \
6
+ python3-pip \
6
7
python3-dev \
7
8
build-essential
8
9
@@ -18,4 +19,4 @@ RUN apt update
18
19
RUN apt -y install libarrow-dev
19
20
# modify permissions to support running with a random uid
20
21
RUN 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
2
2
3
3
RUN apt update && \
4
4
apt install -y \
5
5
jq \
6
+ python3 \
7
+ python3-pip \
6
8
python3-dev \
7
9
build-essential
8
10
@@ -19,4 +21,4 @@ RUN apt update
19
21
RUN apt -y install libarrow-dev
20
22
# modify permissions to support running with a random uid
21
23
RUN 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