From 312f0a23700b018b025445e38592bfdd3c266f81 Mon Sep 17 00:00:00 2001 From: Nathan Kuik Date: Thu, 5 Jan 2023 17:15:35 +0100 Subject: [PATCH] Reorganize apk packages in Dockerfile, add basic open source attribution --- Dockerfile | 7 +++++-- README.md | 10 ++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0fb2b4..0d02604 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,10 @@ FROM alpine:3.12 -RUN apk --no-cache --update add bash git \ - jq curl \ +RUN apk --no-cache --update add \ + bash \ + curl \ + git \ + jq \ && rm -rf /var/cache/apk/* COPY entrypoint.sh /entrypoint.sh diff --git a/README.md b/README.md index d6745d3..e41be72 100644 --- a/README.md +++ b/README.md @@ -72,3 +72,13 @@ jobs: ``` +## Open Source Attribution + +- bash: [GPL 3.0 or later](https://www.gnu.org/licenses/gpl-3.0.html) +- curl: [curl license](https://curl.se/docs/copyright.html) +- git: [GPL 2.0 or later](https://github.com/git/git/blob/master/COPYING) +- jq: [MIT](https://github.com/stedolan/jq/blob/master/COPYING) + +## License + +[MIT License](https://github.com/nkuik/tfsec-action/blob/master/LICENSE)