-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to alpine package for yamllint
- Loading branch information
1 parent
d76b5df
commit 34a680f
Showing
2 changed files
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
FROM alpine:3.19.1 | ||
|
||
# hadolint ignore=DL3018 | ||
RUN apk --update --no-cache add build-base python3-dev py3-setuptools py3-pip \ | ||
RUN apk --update --no-cache add build-base python3-dev py3-setuptools py3-pip yamllint \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
# hadolint ignore=DL3013 | ||
RUN pip3 install --no-cache-dir --upgrade --break-system-packages \ | ||
jq \ | ||
json2yaml \ | ||
yamllint \ | ||
yamlpath \ | ||
yq |