From 57de9c0799f0eca2e2388e99acd689254dc82ee2 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 23 Apr 2024 09:20:45 -0400 Subject: [PATCH] Dockerfile: Add Product directory to /usr/share/doc directory Closes: #12939 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4b97dc44fb..e7146a888f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,8 @@ LABEL name="Packer" \ RUN apk add --no-cache git bash wget openssl gnupg xorriso COPY dist/$TARGETOS/$TARGETARCH/$BIN_NAME /bin/ -COPY LICENSE /usr/share/doc/$PRODUCT_NAME/LICENSE.txt +RUN mkdir -p /usr/share/doc/Packer +COPY LICENSE /usr/share/doc/Packer/LICENSE.txt ENTRYPOINT ["/bin/packer"]