Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sdk/python/feast/infra/transformation_servers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ COPY sdk/python sdk/python
COPY protos protos
COPY README.md README.md

RUN pip3 install pip-tools
RUN pip-compile sdk/python/setup.py
# Install dependencies
RUN pip3 install -e 'sdk/python[ci]'
RUN pip3 install -e 'sdk/python'

# Start feature transformation server
CMD [ "python", "app.py" ]
1 change: 1 addition & 0 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"Jinja2>=2.0.0",
"jsonschema",
"mmh3",
"numpy<1.22", # 1.22 drops support for python 3.7.
"pandas>=1.0.0",
"pandavro==1.5.*",
"protobuf>=3.10,<3.20",
Expand Down