Skip to content

Commit

Permalink
Updated tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Nov 3, 2024
1 parent 4b6c52a commit 2c77286
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ RUN curl -L -o "/tmp/shfmt-v${SH_VERSION}" "https://github.com/mvdan/sh/releases
# Install Docker and Docker Compose V2 (docker compose).
# @see https://download.docker.com/linux/static/stable/x86_64
# @see https://github.com/docker/compose/releases
ENV DOCKER_VERSION=27.0.3
ENV DOCKER_VERSION=27.3.1
# renovate: datasource=github-releases depName=docker/compose extractVersion=^v(?<version>.*)$
ENV DOCKER_COMPOSE_VERSION=2.30.1
RUN curl -L -o "/tmp/docker-${DOCKER_VERSION}.tgz" "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" \
Expand All @@ -113,7 +113,7 @@ RUN curl --silent -L "https://github.com/docker/buildx/releases/download/v${BUIL

# Install composer.
# @see https://getcomposer.org/download
ENV COMPOSER_VERSION=2.7.7
ENV COMPOSER_VERSION=2.8.2
ENV COMPOSER_SHA=dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6
ENV COMPOSER_ALLOW_SUPERUSER=1
# hadolint ignore=DL4006
Expand All @@ -126,15 +126,15 @@ ENV PATH /root/.composer/vendor/bin:$PATH

# Install NVM and NodeJS.
# @see https://github.com/nvm-sh/nvm/releases
ENV NVM_VERSION=v0.39.7
ENV NVM_VERSION=v0.40.1
ENV NVM_DIR=/root/.nvm
# hadolint ignore=DL4006,SC1091
RUN mkdir -p "${NVM_DIR}" \
&& curl -o- "https://raw.githubusercontent.com/nvm-sh/nvm/${NVM_VERSION}/install.sh" | bash \
&& . "$HOME/.nvm/nvm.sh" \
&& nvm --version

ENV SHIPPABLE_NODE_VERSION=v22.5.0
ENV SHIPPABLE_NODE_VERSION=v22.11.0
# hadolint ignore=SC1091
RUN . "$HOME/.nvm/nvm.sh" \
&& nvm install "${SHIPPABLE_NODE_VERSION}" \
Expand All @@ -146,7 +146,7 @@ ENV PATH ${NVM_DIR}/versions/node/${SHIPPABLE_NODE_VERSION}/bin:$PATH
# Install Goss.
# @see https://github.com/aelsabbahy/goss
# renovate: datasource=github-releases depName=aelsabbahy/goss extractVersion=^(?<version>.*)$
ENV GOSS_VER=v0.4.7
ENV GOSS_VER=v0.4.9
ENV GOSS_FILES_STRATEGY=cp
# hadolint ignore=DL4006
RUN curl -fsSL https://goss.rocks/install | sh \
Expand Down

0 comments on commit 2c77286

Please sign in to comment.