Skip to content

Commit

Permalink
added versions print and updated to runner 2.315
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolagospagopa committed Apr 9, 2024
1 parent 816c874 commit 511f8d2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM ghcr.io/actions/actions-runner:2.314.1 AS base
FROM ghcr.io/actions/actions-runner:2.315.0 AS base

USER root

RUN apt-get update \
&& apt-get -y install curl git \
&& apt-get install -y curl jq \
Expand Down Expand Up @@ -50,6 +52,16 @@ RUN apt-get update \
FROM deps-node AS final
COPY ./github-runner-entrypoint.sh ./entrypoint.sh
RUN chmod +x ./entrypoint.sh

USER runner

RUN whoami \
&& echo "az cli: $(az version)" \
&& echo "kubectl client: $(kubectl version --client -o yaml)" \
&& echo "kubelogin client: $(kubelogin --version)" \
&& echo "helm: $(helm version)" \
&& echo "yq: $(yq --version)" \
&& echo "node: $(node --version)" \
&& echo "npm: $(npm --version)"

ENTRYPOINT ["./entrypoint.sh"]
9 changes: 0 additions & 9 deletions github-runner-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,3 @@ else
export REGISTRATION_TOKEN=_REDACTED_

fi









0 comments on commit 511f8d2

Please sign in to comment.