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 94044d6 commit 0c0fa54Copy full SHA for 0c0fa54
Dockerfile
@@ -2,16 +2,17 @@
2
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.10-10 as builder
3
4
WORKDIR /workspace
5
-# Copy the Go Modules manifests
+# Copy the Go modules manifests
6
COPY go.mod go.mod
7
COPY go.sum go.sum
8
# cache deps before building and copying source so that we don't need to re-download as much
9
# and so that source changes don't invalidate our downloaded layer
10
RUN go mod download
11
12
-# Copy the go source
+# Copy the Go sources
13
COPY main.go main.go
14
COPY controllers/ controllers/
15
+COPY pkg/ pkg/
16
17
# Build
18
USER root
0 commit comments