diff --git a/Dockerfile b/Dockerfile index b8dec57..472ae2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # gitzone dockerfile_service ## STAGE 1 // BUILD -FROM code.foss.global/hosttoday/ht-docker-node:npmci as node1 +FROM code.foss.global/host.today/ht-docker-node:npmci as node1 COPY ./ /app WORKDIR /app ARG NPMCI_TOKEN_NPM2 @@ -12,7 +12,7 @@ RUN pnpm run build # gitzone dockerfile_service ## STAGE 2 // install production -FROM code.foss.global/hosttoday/ht-docker-node:npmci as node2 +FROM code.foss.global/host.today/ht-docker-node:npmci as node2 WORKDIR /app COPY --from=node1 /app /app RUN rm -rf .pnpm-store @@ -24,7 +24,7 @@ RUN rm -rf node_modules/ && pnpm install --prod ## STAGE 3 // rebuild dependencies for alpine -FROM code.foss.global/hosttoday/ht-docker-node:alpinenpmci as node3 +FROM code.foss.global/host.today/ht-docker-node:alpinenpmci as node3 WORKDIR /app COPY --from=node2 /app /app ARG NPMCI_TOKEN_NPM2 @@ -34,7 +34,7 @@ RUN pnpm config set store-dir .pnpm-store RUN pnpm rebuild -r ## STAGE 4 // the final production image with all dependencies in place -FROM code.foss.global/hosttoday/ht-docker-node:alpine as node4 +FROM code.foss.global/host.today/ht-docker-node:alpine as node4 WORKDIR /app COPY --from=node3 /app /app diff --git a/changelog.md b/changelog.md index 676e67b..b840b48 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-11-17 - 4.3.16 - fix(infrastructure) +Correct Docker image path in Dockerfile for improved build consistency. + +- Dockerfile: Updated base image paths from 'code.foss.global/hosttoday/ht-docker-node' to 'code.foss.global/host.today/ht-docker-node'. + ## 2024-11-17 - 4.3.15 - fix(project setup) fixed incorrect configuration in npmextra.json diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f40ef60..1b83a55 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.15', + version: '4.3.16', 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 f40ef60..1b83a55 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.15', + version: '4.3.16', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' }