We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b996a3c commit 544595bCopy full SHA for 544595b
2 files changed
Dockerfile
@@ -11,4 +11,10 @@ COPY ./ ./
11
12
RUN make build
13
14
+FROM debian:bookworm
15
+
16
17
+COPY --from=builder /app/batch-runner /app/batch-runner
18
19
20
ENTRYPOINT ["/app/batch-runner"]
Makefile
@@ -42,7 +42,7 @@ vet: ## Run go vet against code.
42
43
.PHONY: compress
44
compress: .bin/upx
45
- upx -5 ./.bin/$(NAME)_linux_amd64 ./.bin/$(NAME)_linux_arm64 ./.bin/$(NAME)_darwin_amd64 ./.bin/$(NAME)_darwin_arm64 ./.bin/$(NAME).exe
+ upx -5 ./.bin/$(NAME)_linux_amd64 ./.bin/$(NAME)_linux_arm64 ./.bin/$(NAME).exe
46
47
.PHONY: linux
48
linux:
0 commit comments