File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11# Name of the Docker container
22DOCKER_IMAGE =node:22-slim
3- API_DOCKER_IMAGE_NAME_PREFIX =ghcr.io/local-connectivity-lab
43API_DOCKER_IMAGE_NAME =ccn-coverage-api
54
65# The current directory (mapped to the container)
@@ -23,13 +22,13 @@ validate-semver-%:
2322.PHONY : build
2423build :
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)
3029build-% : 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
Original file line number Diff line number Diff 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' ;
You can’t perform that action at this time.
0 commit comments