Skip to content

Commit

Permalink
Dockerfile:
Browse files Browse the repository at this point in the history
- added label to dockerfile
  • Loading branch information
JPugetGil committed Sep 16, 2024
1 parent 8b3fcbb commit 04d7f6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion quads-loader/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ COPY . .
RUN ["mvn", "package", "-Dmaven.test.skip=true"]

FROM eclipse-temurin:21
LABEL maintainer="vcity"

LABEL maintainer="vcity, [email protected]"
LABEL authors="[email protected]"

RUN mkdir /opt/app
COPY --from=build-loader /app/target/quads-loader-0.0.1-SNAPSHOT.jar /opt/app/quads-loader.jar
Expand Down
4 changes: 3 additions & 1 deletion quads-query/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ COPY . .
RUN ["mvn", "package", "-Dmaven.test.skip=true"]

FROM eclipse-temurin:21
LABEL maintainer="vcity"

LABEL maintainer="vcity, [email protected]"
LABEL authors="[email protected]"

RUN mkdir /opt/app
COPY --from=build-query /app/target/quads-query-1.0-SNAPSHOT-jar-with-dependencies.jar /opt/app/quads-query.jar
Expand Down

0 comments on commit 04d7f6c

Please sign in to comment.