File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
set-imgpkg-bundle-as-vendir-path Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ All notable changes to this project will be documented in this file.
99The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
1010and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
1111
12+ ## [ Unreleased]
13+
14+ ### Fixed
15+
16+ - Run docker actions as a non-root user.
17+
1218## [ 1.2.0] - 2024-11-10
1319
1420### Added
Original file line number Diff line number Diff line change 11FROM alpine:latest
22RUN apk add --update --no-cache --no-progress curl jq
3- RUN adduser -u 1001 -D action
4- USER action
53COPY action.sh /action.sh
64ENTRYPOINT ["/action.sh" ]
Original file line number Diff line number Diff line change @@ -6,8 +6,5 @@ RUN apk add --update --no-cache --no-progress bash perl-utils \
66 && wget -O- https://carvel.dev/install.sh | bash \
77 && apk del bash perl-utils
88
9- RUN adduser -u 1001 -D action
10- USER action
11-
129COPY action.sh /action.sh
1310ENTRYPOINT ["/action.sh" ]
You can’t perform that action at this time.
0 commit comments