Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update alpine/git docker tag to v2.47.2 #909

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.dev-env
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
&& cp $(/workspace/bin/setup-envtest use ${ENVTEST_K8S_VERSION} -p path)/* /usr/local/bin

# Get PluginDefinitions from https://github.com/cloudoperators/greenhouse-extensions
FROM alpine/git:v2.47.1 AS git
FROM alpine/git:v2.47.2 AS git
RUN git clone https://github.com/cloudoperators/greenhouse-extensions.git /greenhouse-extensions

# final image
Expand All @@ -41,6 +41,6 @@
&& apk add --no-cache --no-progress libc6-compat \
&& apk del --no-cache --no-progress apk-tools alpine-keys

CMD /dev-env && \

Check warning on line 44 in Dockerfile.dev-env

View workflow job for this annotation

GitHub Actions / Build (Dockerfile.dev-env, greenhouse-dev-env)

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/
echo "proxying ${DEV_ENV_CONTEXT:-cluster-admin}" && \
kubectl proxy --kubeconfig=/envtest/internal.kubeconfig --context=${DEV_ENV_CONTEXT:-cluster-admin} --port=8090 --v=9 --address="0.0.0.0" --accept-hosts "^.*$"
Loading