From b5ca898eacd07e91029f97c647a188d8acb58b9a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 17 Nov 2024 06:31:22 +0100 Subject: [PATCH] fix(Dockerfile): Corrected docker base image tag in Dockerfile for alpine compatibility. --- Dockerfile | 2 +- changelog.md | 6 ++++++ ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 472ae2f..6a0424c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN rm -rf node_modules/ && pnpm install --prod ## STAGE 3 // rebuild dependencies for alpine -FROM code.foss.global/host.today/ht-docker-node:alpinenpmci as node3 +FROM code.foss.global/host.today/ht-docker-node:alpine_npmci as node3 WORKDIR /app COPY --from=node2 /app /app ARG NPMCI_TOKEN_NPM2 diff --git a/changelog.md b/changelog.md index b840b48..5963d05 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2024-11-17 - 4.3.17 - fix(Dockerfile) +Corrected docker base image tag in Dockerfile for alpine compatibility. + +- Updated Dockerfile to use the correct base image tag for Alpine. +- Resolved any potential build issues related to incorrect image tag usage. + ## 2024-11-17 - 4.3.16 - fix(infrastructure) Correct Docker image path in Dockerfile for improved build consistency. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 1b83a55..5b6a684 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.3.16', + version: '4.3.17', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 1b83a55..5b6a684 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.3.16', + version: '4.3.17', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' }