Skip to content

Commit 2c2150a

Browse files
Br1an67ntkathole
authored andcommitted
fix: Add grpcio dependency group to transformation server Dockerfile
The feature-transformation-server image fails at runtime because grpc_reflection is imported in transformation_server.py but the grpcio optional dependency group (which includes grpcio-reflection) is not installed in the Docker image. Add 'grpcio' to the pip install extras alongside 'gcp' and 'aws'. Signed-off-by: Br1an67 <932039080@qq.com>
1 parent 9165870 commit 2c2150a

File tree

1 file changed

+1
-1
lines changed
  • sdk/python/feast/infra/transformation_servers

1 file changed

+1
-1
lines changed

sdk/python/feast/infra/transformation_servers/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY pyproject.toml pyproject.toml
1515
COPY README.md README.md
1616

1717
# Install dependencies
18-
RUN --mount=source=.git,target=.git,type=bind uv pip install --system --no-cache-dir '.[gcp,aws]'
18+
RUN --mount=source=.git,target=.git,type=bind uv pip install --system --no-cache-dir '.[gcp,aws,grpcio]'
1919

2020
# Start feature transformation server
2121
CMD [ "python", "app.py" ]

0 commit comments

Comments
 (0)