We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce63651 commit afe9590Copy full SHA for afe9590
.dockerignore
@@ -1,4 +1 @@
1
-# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2
-# Ignore build and test binaries.
3
-bin/
4
-testbin/
+/dist
.goreleaser.yaml
@@ -1,7 +1,9 @@
+version: 2
+
project_name: template-controller
5
builds:
- - binary: manager
6
+ - binary: bin/manager
7
env:
8
- CGO_ENABLED=0
9
id: linux
Dockerfile
@@ -6,7 +6,7 @@ FROM $ARCH_ORG/debian:bullseye-slim
# We meed git for kustomize to support overlays from git
RUN apt update && apt install git -y && rm -rf /var/lib/apt/lists/*
-COPY manager /manager
+COPY bin/manager /manager
10
USER 65532:65532
11
12
ENTRYPOINT ["/manager"]
0 commit comments