From 76c86e09c1c8f54b3c9f2fe7d8e35437e05ff28f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 17 Nov 2024 20:24:00 +0100 Subject: [PATCH] fix(Dockerfiles): Correct Docker image source host in various Dockerfiles --- Dockerfile_alpine_npmci | 2 +- Dockerfile_fossglobal_preinstalled_##version## | 2 +- Dockerfile_iot | 2 +- Dockerfile_lts | 2 +- Dockerfile_npmci | 2 +- Dockerfile_stableinit | 2 +- changelog.md | 5 +++++ 7 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Dockerfile_alpine_npmci b/Dockerfile_alpine_npmci index 32bfed0..196b823 100644 --- a/Dockerfile_alpine_npmci +++ b/Dockerfile_alpine_npmci @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:alpine +FROM host.today/ht-docker-node:alpine RUN apk update && apk add bash libc6-compat alpine-sdk ENV PYTHONUNBUFFERED=1 RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python diff --git a/Dockerfile_fossglobal_preinstalled_##version## b/Dockerfile_fossglobal_preinstalled_##version## index 2eb366a..26c63cd 100644 --- a/Dockerfile_fossglobal_preinstalled_##version## +++ b/Dockerfile_fossglobal_preinstalled_##version## @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:npmci +FROM host.today/ht-docker-node:npmci RUN npm install -g \ @git.zone/tsrun \ @git.zone/tstest \ diff --git a/Dockerfile_iot b/Dockerfile_iot index b9973f9..33751d0 100644 --- a/Dockerfile_iot +++ b/Dockerfile_iot @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:latest as stage1 +FROM host.today/ht-docker-node:latest as stage1 LABEL author="Task Venture Capital GmbH " RUN apt-get update && apt-get install -y --no-install-recommends qemu-user-static binfmt-support # the following lines need to be run on a system that supports both architectures diff --git a/Dockerfile_lts b/Dockerfile_lts index 550a562..bb1c75e 100644 --- a/Dockerfile_lts +++ b/Dockerfile_lts @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:latest +FROM host.today/ht-docker-node:latest LABEL author="Task Venture Capital GmbH " RUN bash -c "source $NVM_DIR/nvm.sh \ diff --git a/Dockerfile_npmci b/Dockerfile_npmci index 3d39119..7dda69b 100644 --- a/Dockerfile_npmci +++ b/Dockerfile_npmci @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:latest +FROM host.today/ht-docker-node:latest LABEL author="Task Venture Capital GmbH " RUN pnpm install -g @ship.zone/npmci diff --git a/Dockerfile_stableinit b/Dockerfile_stableinit index bc64cf3..815e527 100644 --- a/Dockerfile_stableinit +++ b/Dockerfile_stableinit @@ -1,4 +1,4 @@ -FROM hosttoday/ht-docker-node:latest +FROM host.today/ht-docker-node:latest # Add Tini ENV TINI_VERSION v0.19.0 ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini diff --git a/changelog.md b/changelog.md index fcf08d5..d2be8c4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-11-17 - 5.0.146 - fix(Dockerfiles) +Correct Docker image source host in various Dockerfiles + +- Updated the source host from 'hosttoday/ht-docker-node' to 'host.today/ht-docker-node' in several Dockerfiles + ## 2024-11-17 - 5.0.145 - fix(docs) Minor documentation updates without code changes.