I want to create a Dockerfile to install garden-cl...
# 🤖|ask-kapa
m
Please stand by @bright-policeman-43626 as I search the knowledge base. I normally take about 20 seconds or so. :wave:
---------------------- Hmm, I don't know enough to give you a confident answer yet. The extracts provided do not contain specific information on creating a Dockerfile to install garden-cli in a container. However, you can refer to the Garden installation documentation () for more details on how to install Garden. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
b
If anybody is interested in how to do it:
Copy code
FROM gcr.io/cloud-builders/docker

RUN curl -sL https://get.garden.io/install.sh | bash
ENV PATH="/root/.garden/bin:${PATH}"
RUN garden self-update 0.12.61

ENTRYPOINT ["/bin/bash"]
Works like a charm