Compare commits

...

4 commits

Author SHA1 Message Date
a4afb7fe31 Merge pull request 'IPCEICIS-2303_build_system' (#3) from IPCEICIS-2303_build_system into main
Some checks failed
ci / build (push) Failing after 3m2s
Reviewed-on: #3
2025-03-15 12:14:34 +00:00
Richard Robert Reitz
c56dc288b6 Merge branch 'main' into IPCEICIS-2303_build_system
Some checks failed
ci / build (push) Has been cancelled
2025-03-15 13:12:59 +01:00
c300623450 remove cnoe-cli from Dockerfile
Some checks failed
Create and publish a Docker image / docker (push) Failing after 6s
2025-03-14 10:23:24 +01:00
986b975121 remove cnoe-cli from Dockerfile
Some checks are pending
Create and publish a Docker image / docker (push) Waiting to run
2025-03-14 10:06:15 +01:00

View file

@ -50,7 +50,6 @@ 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 if test "$(uname -m)" = "x86_64"; \
then \
@ -62,16 +61,6 @@ RUN if test "$(uname -m)" != "x86_64"; \
fi
RUN 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"