From fc8916ce4bc5f06c0cc7521c1201f8562f3698f5 Mon Sep 17 00:00:00 2001 From: William Bell Date: Thu, 3 Aug 2023 20:36:35 +0200 Subject: [PATCH] add license to docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 08b246f..6e6fa0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,9 @@ RUN go mod download # Copy the source from the current directory to the Working Directory inside the container COPY ./src ./src +# Copy License +COPY LICENSE . + # Build the Go app RUN go build -trimpath -ldflags="-s -w" -o bin/argon ./src