From f59ac1109fd1f8e791c4eb5c75f541847bdb4546 Mon Sep 17 00:00:00 2001 From: Joseph Richard Date: Tue, 3 Dec 2024 22:07:24 -0700 Subject: [PATCH] Change image path --- Makefile | 2 +- hack/build-image.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9dfc9715..998db473 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ default: image: ./hack/build-image.sh push: - docker push ghcr.io/k8snetworkplumbingwg/linuxptp-daemon:latest + docker push ghcr.io/k8snetworkplumbingwg/linuxptp-daemon-image:latest clean: ./hack/cleanup.sh fmt: diff --git a/hack/build-image.sh b/hack/build-image.sh index 56a0f2b9..b6de6927 100755 --- a/hack/build-image.sh +++ b/hack/build-image.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker build -t ghcr.io/k8snetworkplumbingwg/linuxptp-daemon -f ./Dockerfile . +docker build -t ghcr.io/k8snetworkplumbingwg/linuxptp-daemon-image -f ./Dockerfile .