Skip to content
Snippets Groups Projects
Verified Commit 500ddaac authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

refactor(koolbox): Replace Terraform with OpenTF

parent 999c5740
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,8 @@ RUN curl -L "https://github.com/rust-lang/mdBook/releases/download/${MDBOOK_VERS
# Terraform CLI
FROM docker.io/hashicorp/terraform:1.5.3 AS terraform
FROM quay.io/shivering-isles/opentf:0.1.0 as opentf
# Actual start of container build
FROM quay.io/fedora/fedora:38
......@@ -167,7 +169,7 @@ COPY --from=mdbook /usr/local/bin/mdbook /usr/local/bin/mdbook
COPY --from=release-cli /usr/local/bin/release-cli /usr/local/bin/release-cli
COPY --from=git-chglog /usr/local/bin/git-chglog /usr/local/bin/git-chglog
COPY --from=svu /usr/bin/svu /usr/local/bin/svu
COPY --from=terraform /bin/terraform /usr/local/bin/terraform
COPY --from=opentf /usr/local/bin/opentf /usr/local/bin/opentf
RUN true \
&& echo "command -v kubectl-krew >/dev/null && export PATH=\"${KREW_ROOT:-$HOME/.krew}/bin:$PATH\"" >> /root/.bashrc \
......@@ -176,6 +178,7 @@ RUN true \
&& echo "command -v kubectl >/dev/null && . <(kubectl completion bash)" >> /root/.bashrc \
&& echo "command -v helm >/dev/null && . <(helm completion bash)" >> /root/.bashrc \
&& echo "command -v mdbook >/dev/null && . <(mdbook completions bash)" >> /root/.bashrc \
&& ln -s /usr/local/bin/opentf /usr/local/bin/terraform \
&& true
RUN true \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment