Skip to content

Commit

Permalink
Reorganize apk packages in Dockerfile, add basic open source attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuik committed Jan 5, 2023
1 parent fa0cf2e commit 312f0a2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 312f0a2

Please sign in to comment.