Skip to content

Commit 1c438e3

Browse files
authored
Tweak makefile to match up with docker repo (#231)
1 parent 9577fd0 commit 1c438e3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GIT_TAG?= $(shell git describe --always --tags)
22
BIN = gosec
33
FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)
4-
IMAGE_REPO = docker.io
4+
IMAGE_REPO = securego
55
BUILDFLAGS := ''
66
CGO_ENABLED = 0
77

@@ -41,8 +41,7 @@ image: build-linux
4141

4242
image-push: image
4343
@echo "Pushing the Docker image..."
44-
45-
docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG)
44+
docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG)
4645
docker push $(IMAGE_REPO)/$(BIN):latest
4746

4847
.PHONY: test build clean release image image-push

0 commit comments

Comments
 (0)