From 986b9751214f2e1d3d2e7253344c935d98a91fac Mon Sep 17 00:00:00 2001 From: Christopher Hase Date: Fri, 14 Mar 2025 10:06:15 +0100 Subject: [PATCH 1/2] remove cnoe-cli from Dockerfile --- Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90c8337..a57d904 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,15 +54,15 @@ RUN yarn config set python /usr/bin/python3 # Add mkdocs for the TechDocs plugin. RUN curl -L -o /usr/local/bin/kubectl https://dl.k8s.io/release/v1.29.9/bin/linux/amd64/kubectl && chmod +x /usr/local/bin/kubectl -RUN curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/cnoe_Linux_x86_64.tar.gz && \ - curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/checksums.txt && \ - sha256sum -c --strict --status --ignore-missing checksums.txt && \ - tar -xzf cnoe_Linux_x86_64.tar.gz && \ - mv cnoe /usr/bin/cnoe-cli && \ - chmod +x /usr/bin/cnoe-cli && \ - rm checksums.txt cnoe_Linux_x86_64.tar.gz -COPY ./cnoe-wrapper.sh /usr/bin/cnoe -RUN chmod +x /usr/bin/cnoe +#RUN curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/cnoe_Linux_x86_64.tar.gz && \ +# curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/checksums.txt && \ +# sha256sum -c --strict --status --ignore-missing checksums.txt && \ +# tar -xzf cnoe_Linux_x86_64.tar.gz && \ +# mv cnoe /usr/bin/cnoe-cli && \ +# chmod +x /usr/bin/cnoe-cli && \ +# rm checksums.txt cnoe_Linux_x86_64.tar.gz +#COPY ./cnoe-wrapper.sh /usr/bin/cnoe +#RUN chmod +x /usr/bin/cnoe ENV VIRTUAL_ENV=/opt/venv RUN python3 -m venv $VIRTUAL_ENV From c300623450d1044ef54080d69f0af32c49fd58a5 Mon Sep 17 00:00:00 2001 From: Christopher Hase Date: Fri, 14 Mar 2025 10:23:24 +0100 Subject: [PATCH 2/2] remove cnoe-cli from Dockerfile --- Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index a57d904..db795b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,20 +50,9 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ RUN yarn config set python /usr/bin/python3 # Add kubectl for the kube apply plugin. -# Add cnoe-cli # Add mkdocs for the TechDocs plugin. RUN curl -L -o /usr/local/bin/kubectl https://dl.k8s.io/release/v1.29.9/bin/linux/amd64/kubectl && chmod +x /usr/local/bin/kubectl -#RUN curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/cnoe_Linux_x86_64.tar.gz && \ -# curl -L -O https://github.com/cnoe-io/cnoe-cli/releases/download/v0.1.0/checksums.txt && \ -# sha256sum -c --strict --status --ignore-missing checksums.txt && \ -# tar -xzf cnoe_Linux_x86_64.tar.gz && \ -# mv cnoe /usr/bin/cnoe-cli && \ -# chmod +x /usr/bin/cnoe-cli && \ -# rm checksums.txt cnoe_Linux_x86_64.tar.gz -#COPY ./cnoe-wrapper.sh /usr/bin/cnoe -#RUN chmod +x /usr/bin/cnoe - ENV VIRTUAL_ENV=/opt/venv RUN python3 -m venv $VIRTUAL_ENV ENV PATH="$VIRTUAL_ENV/bin:$PATH"