Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #231 from triggermesh/docker-fix
Browse files Browse the repository at this point in the history
dockerfile: fix path to tm binary from build stage
  • Loading branch information
Sameer Naik authored Jul 11, 2022
2 parents 0a156ed + 3cb0910 commit 258bac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN apt-get update && \
apt-get install --no-install-recommends --no-install-suggests -y ca-certificates && \
rm -rf /var/lib/apt/lists/*

COPY --from=build /go/bin/linux_amd64/tm /bin/tm
COPY --from=build /go/bin/tm /bin/tm
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TARGETS ?= darwin/amd64 linux/amd64 windows/amd64
DIST_DIR ?=

GIT_REPO = github.com/triggermesh/tm
GIT_TAG ?= $(shell git describe --tags --always)
GIT_TAG ?= $(shell git for-each-ref refs/tags --sort=-taggerdate --format='%(refname:short)' --count=1)

DOCKER = docker
IMAGE_REPO ?= gcr.io/triggermesh
Expand Down

0 comments on commit 258bac4

Please sign in to comment.