custom_act_runner/Dockerfile
Renovate Bot 6aeaf05898
Some checks failed
Build docker container / Build image (push) Has been cancelled
Update ubuntu:latest Docker digest to 3afff29
2025-02-04 08:00:10 +00:00

15 lines
679 B
Docker

FROM ubuntu:latest@sha256:3afff29dffbc200d202546dc6c4f614edc3b109691e7ab4aa23d02b42ba86790
ENV TZ="Europe/Amsterdam"
RUN apt update
RUN apt install -y curl wget nano jq
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq
RUN chmod +x /usr/bin/yq
COPY *.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/*.sh
USER root
WORKDIR /root/
ENTRYPOINT createHelmYaml.sh