From 26fe5dfd3776711da50800abe4d0d72afb347e9d Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Tue, 7 May 2024 12:21:38 +0000 Subject: [PATCH 1/2] feat(mise): read .env file automatically --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 91be22d..9f5f8e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -159,6 +159,7 @@ RUN mkdir -p ${HOME}/.local/src \ RUN git clone https://github.com/elixir-lsp/elixir-ls.git ${LOCAL_SRC_HOME}/elixir-ls # command line utilities +ENV MISE_ENV_FILE .env RUN curl https://mise.jdx.dev/install.sh | sh \ && curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash \ && git clone https://github.com/tmux-plugins/tpm.git ${XDG_CONFIG_HOME}/tmux/plugins/tpm -- 2.47.2 From d2b85742ff7cf25374d563190720c56a1bc6d731 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Tue, 7 May 2024 12:22:28 +0000 Subject: [PATCH 2/2] feat(mise): add kind for k8s cluster Just compare with k3d and use it in _descomplicando kubernetes_ course. --- Dockerfile | 1 + config/mise/config.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9f5f8e7..cda1dd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -199,6 +199,7 @@ RUN ${LOCAL_BIN_HOME}/mise plugins install --force --yes \ k3d \ k3sup \ k9s \ + kind \ kubectl \ kubie \ lefthook \ diff --git a/config/mise/config.toml b/config/mise/config.toml index 898659d..cca4050 100644 --- a/config/mise/config.toml +++ b/config/mise/config.toml @@ -12,6 +12,7 @@ helm = "3.14.3" k3d = "5.6.0" k3sup = "0.13.5" k9s = "0.32.3" +kind = "0.22.0" kubectl = "1.29.3" kubie = "0.23.0" lefthook = "1.6.7" -- 2.47.2