Skip to content
Snippets Groups Projects
Commit 9ca9485f authored by Casey Clark's avatar Casey Clark
Browse files

feat: support using renovate managed version for mise

parent e80400b4
No related branches found
No related tags found
No related merge requests found
Pipeline #23977947 passed
Loading
Loading
@@ -19,3 +19,4 @@ variables:
GL_COMMON_RENOVATE_YARN_VERSION: "1.22.22" # datasource=github-tags depName=yarnpkg/yarn
GL_COMMON_RENOVATE_YQ_VERSION: "4.44.3" # datasource=github-releases depName=mikefarah/yq
GL_COMMON_RENOVATE_PYTHON_VERSION: "3.12.7" # datasource=github-tags depName=python/cpython
GL_COMMON_RENOVATE_MISE_VERSION: "v2024.11.9" # datasource=github-releases depName=jdx/mise
# This image is used by asdf to validate asdf setup scripts in asdf-tool-versions.yml
FROM ghcr.io/containerbase/base:12.0.10
ARG GL_COMMON_RENOVATE_GIT_VERSION
ARG GL_COMMON_RENOVATE_MISE_VERSION
ARG GL_COMMON_RENOVATE_PYTHON_VERSION
 
ENV DEBIAN_FRONTEND=noninteractive
ENV MISE_INSTALL_PATH=/bin/mise
ENV MISE_VERSION="${GL_COMMON_RENOVATE_MISE_VERSION}"
 
# Some dependencies from https://github.com/pyenv/pyenv/wiki#suggested-build-environment
# required for mise
Loading
Loading
@@ -26,4 +29,4 @@ RUN apt-get clean autoclean && apt-get autoremove --yes && \
rm -rf /var/lib/{cache,log}/
 
# Install mise
RUN curl https://mise.jdx.dev/mise-latest-linux-x64 > /bin/mise && chmod 755 /bin/mise
RUN curl https://mise.run | sh
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