Skip to content

Commit 0e4ddf0

Browse files
authored
chore: remove docker name prefix (#10)
1 parent 8ed09da commit 0e4ddf0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Name of the Docker container
22
DOCKER_IMAGE=node:22-slim
3-
API_DOCKER_IMAGE_NAME_PREFIX=ghcr.io/local-connectivity-lab
43
API_DOCKER_IMAGE_NAME=ccn-coverage-api
54

65
# The current directory (mapped to the container)
@@ -23,13 +22,13 @@ validate-semver-%:
2322
.PHONY: build
2423
build:
2524
@echo "Create docker container for $(API_DOCKER_IMAGE_NAME)"
26-
docker build -t $(API_DOCKER_IMAGE_NAME_PREFIX)/$(API_DOCKER_IMAGE_NAME) .
25+
docker build -t $(API_DOCKER_IMAGE_NAME) .
2726

2827

2928
# Build with specific version (e.g., make build-1.2.3)
3029
build-%: validate-semver-%
3130
@echo "Create docker container for $(API_DOCKER_IMAGE_NAME) with version $*"
32-
docker build -t $(API_DOCKER_IMAGE_NAME_PREFIX)/$(API_DOCKER_IMAGE_NAME):$* .
31+
docker build -t $(API_DOCKER_IMAGE_NAME):$* .
3332

3433
# The target for development
3534
.PHONY: dev

scripts/publish-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default async (pluginConfig, context) => {
2222

2323
const umbrellaRepoOwner = REPO_OWNER || "Local-Connectivity-Lab";
2424
const umbrellaRepoName = REPO_NAME || "ccn-coverage-docker";
25-
const manifestPath = "./input-manifest.yml";
25+
const manifestPath = "input-manifest.yml";
2626
const targetArtifactName = TARGET_ARTIFACT_NAME || "ccn-coverage-api";
2727
const baseBranch = 'main';
2828
const gitUserName = GIT_COMMITTER_NAME || 'scn-git';

0 commit comments

Comments
 (0)