Skip to content

Commit 97e2fd3

Browse files
authored
Merge pull request #12 from tembo-io/updatePath
Install temback binary into PATH
2 parents 956a09d + 200e3bd commit 97e2fd3

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,21 @@ All notable changes to this project will be documented in this file. It uses the
77
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
88
"Semantic Versioning 2.0.0"
99

10+
## [v0.2.3] — 2025-05-05
11+
12+
### ⚡ Improvements
13+
14+
* Install temback binary into PATH in the OCI image.
15+
16+
[v0.2.3]: https://github.com/tembo-io/temback/compare/v0.2.2...v0.2.3
17+
1018
## [v0.2.2] — 2025-05-05
1119

1220
### ⚡ Improvements
1321

1422
* Use alpine for base image
1523

16-
[v0.2.1]: https://github.com/tembo-io/temback/compare/v0.2.1...v0.2.2
24+
[v0.2.2]: https://github.com/tembo-io/temback/compare/v0.2.1...v0.2.2
1725

1826
## [v0.2.1] — 2025-04-30
1927

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GO ?= go
22
GOOS ?= $(word 1,$(subst /, ,$(word 4, $(shell $(GO) version))))
33
GOARCH ?= $(word 2,$(subst /, ,$(word 4, $(shell $(GO) version))))
44
PLATFORM := $(GOOS)-$(GOARCH)
5-
VERSION := v0.2.2
5+
VERSION := v0.2.3
66
REVISION := $(shell git rev-parse --short HEAD)
77
REGISTRY ?= localhost:5001
88
ldflags = -ldflags="-s -w -X 'main.version=$(VERSION)' -X 'main.build=$(REVISION)'"

docker-bake.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ target "default" {
2626
FROM alpine:3.21
2727
RUN apk update && apk add --no-cache ca-certificates postgresql-client
2828
ARG TARGETOS TARGETARCH
29-
COPY _build/$${TARGETOS}-$${TARGETARCH}/temback ./temback
30-
ENTRYPOINT ["/temback"]
29+
COPY _build/$${TARGETOS}-$${TARGETARCH}/temback /usr/local/bin/temback
30+
ENTRYPOINT ["/usr/local/bin/temback"]
3131
CMD ["--version"]
3232
EOT
3333
tags = [

0 commit comments

Comments
 (0)