This repository was archived by the owner on Nov 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
java/infra/docker/feature-server Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ FROM maven:3.6-jdk-11 as builder
77WORKDIR /build
88
99COPY java/pom.xml .
10- COPY java/datatypes/java/ pom.xml datatypes/java /pom.xml
10+ COPY java/datatypes/pom.xml datatypes/pom.xml
1111COPY java/common/pom.xml common/pom.xml
1212COPY java/serving/pom.xml serving/pom.xml
1313COPY java/storage/api/pom.xml storage/api/pom.xml
1414COPY java/storage/connectors/pom.xml storage/connectors/pom.xml
1515COPY java/storage/connectors/redis/pom.xml storage/connectors/redis/pom.xml
16- COPY java/sdk/java/ pom.xml sdk/java /pom.xml
17- COPY java/docs/coverage/java/ pom.xml docs/coverage/java /pom.xml
16+ COPY java/sdk/pom.xml sdk/pom.xml
17+ COPY java/docs/coverage/pom.xml docs/coverage/pom.xml
1818
1919# Setting Maven repository .m2 directory relative to /build folder gives the
2020# user to optionally use cached repository when building the image by copying
@@ -24,7 +24,7 @@ COPY java/pom.xml .m2/* .m2/
2424RUN mvn dependency:go-offline -DexcludeGroupIds:dev.feast 2>/dev/null || true
2525
2626COPY java/ .
27- COPY protos/feast datatypes/java/ src/main/proto/feast
27+ COPY protos/feast datatypes/src/main/proto/feast
2828
2929ARG VERSION=dev
3030RUN mvn --also-make --projects serving -Drevision=$VERSION \
You can’t perform that action at this time.
0 commit comments