forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Pass region to S3 client only if set (Java) (feast-dev#4151)
* pass region to s3 client only if set Signed-off-by: tokoko <togurg14@freeuni.edu.ge> * java ci changes Signed-off-by: tokoko <togurg14@freeuni.edu.ge> --------- Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
- Loading branch information
Showing
3 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
java/serving/src/test/resources/docker-compose/feast10/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
FROM python:3.11 | ||
|
||
WORKDIR /app | ||
COPY java/serving/src/test/resources/docker-compose/feast10/ . | ||
COPY sdk/python /mnt/feast/sdk/python | ||
COPY protos /mnt/feast/protos | ||
COPY setup.py /mnt/feast/setup.py | ||
COPY pyproject.toml /mnt/feast/pyproject.toml | ||
COPY README.md /mnt/feast/README.md | ||
RUN cd /mnt/feast && SETUPTOOLS_SCM_PRETEND_VERSION="0.1.0" pip install .[grpcio,redis] | ||
COPY Makefile /mnt/feast/Makefile | ||
ENV SETUPTOOLS_SCM_PRETEND_VERSION=0.1.0 | ||
RUN pip install uv | ||
RUN cd /mnt/feast && uv pip install --system .[grpcio,redis] | ||
COPY java/serving/src/test/resources/docker-compose/feast10/ . | ||
EXPOSE 8080 | ||
|
||
CMD ["./entrypoint.sh"] |