Skip to content

Commit 89eb3a5

Browse files
authored
Fix issues with java docker building (#2178)
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 068389d commit 89eb3a5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

java/infra/docker/feature-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN wget -q https://github.com/grpc-ecosystem/grpc-health-probe/releases/downloa
4343

4444
FROM amazoncorretto:11 as production
4545
ARG VERSION=dev
46-
COPY --from=builder /build/serving/target/feast-serving-$VERSION-exec.jar /opt/feast/feast-serving.jar
46+
COPY --from=builder /build/serving/target/feast-serving-$VERSION-jar-with-dependencies.jar /opt/feast/feast-serving.jar
4747
COPY --from=builder /usr/bin/grpc-health-probe /usr/bin/grpc-health-probe
4848
CMD ["java",\
4949
"-Xms1g",\

java/storage/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>dev.feast</groupId>
66
<artifactId>feast-parent</artifactId>
77
<version>${revision}</version>
8-
<relativePath>../..</relativePath>
8+
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

java/storage/connectors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>dev.feast</groupId>
66
<artifactId>feast-parent</artifactId>
77
<version>${revision}</version>
8-
<relativePath>../..</relativePath>
8+
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)