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 docker tag to v3.21.2 #837

Merged
merged 1 commit into from
Jan 8, 2025
Merged
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 @@ -23,7 +23,7 @@
RUN git clone https://github.com/cloudoperators/greenhouse-extensions.git /greenhouse-extensions

# final image
FROM --platform=${BUILDPLATFORM:-linux/amd64} alpine:3.21.1
FROM --platform=${BUILDPLATFORM:-linux/amd64} alpine:3.21.2
LABEL source_repository="https://github.com/cloudoperators/greenhouse"
ENV KUBEBUILDER_ASSETS=/usr/local/bin
WORKDIR /
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