File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ RUN go mod download
1313# Copy the go source
1414COPY /cmd/main.go main.go
1515COPY /pkg pkg/
16+ COPY /api api/
17+ COPY /internal internal/
1618
1719# Build
1820RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} GO111MODULE=on go build -a -o deployment-agent main.go
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module github.com/pluralsh/deployment-operator
33go 1.21
44
55require (
6+ github.com/Masterminds/semver/v3 v3.2.1
67 github.com/Masterminds/sprig/v3 v3.2.3
78 github.com/evanphx/json-patch v5.6.0+incompatible
89 github.com/fluxcd/flagger v1.35.0
@@ -44,7 +45,6 @@ require (
4445 github.com/BurntSushi/toml v1.2.1 // indirect
4546 github.com/MakeNowJust/heredoc v1.0.0 // indirect
4647 github.com/Masterminds/goutils v1.1.1 // indirect
47- github.com/Masterminds/semver/v3 v3.2.1 // indirect
4848 github.com/Masterminds/squirrel v1.5.3 // indirect
4949 github.com/Yamashou/gqlgenc v0.14.0 // indirect
5050 github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
You can’t perform that action at this time.
0 commit comments