Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Rename Docker image LABEL statements containing git properties.
Browse files Browse the repository at this point in the history
LABELs are inherited by child images.  Child image LABELs are colliding with the LABELs in this image.  Update LABEL statements to be unique, so there are no collisions.
  • Loading branch information
emetsger committed Jun 27, 2019
1 parent b07802b commit 9544f35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deposit-messaging/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM openjdk:8u151-jdk-alpine3.7@sha256:bd4030dd52cfb61a61e622fe74483e4e2089a2ef3d782bbf742a0d99093da119

LABEL version=${project.parent.version}
LABEL commit=${git.commit.id.abbrev}
LABEL commitdate=${git.commit.time}
LABEL builddate=${git.build.time}
LABEL dirty=${git.dirty}
LABEL deposit-services-version=${project.parent.version}
LABEL deposit-services-commit=${git.commit.id.abbrev}
LABEL deposit-services-commitdate=${git.commit.time}
LABEL deposit-services-builddate=${git.build.time}
LABEL deposit-services-dirty=${git.dirty}

ARG SPRING_ACTIVEMQ_BROKER_URL
ARG PASS_FEDORA_BASEURL
Expand Down

0 comments on commit 9544f35

Please sign in to comment.