Skip to content

Commit 0bc5909

Browse files
authored
fix Dockerfile (#112)
1 parent 9a282e7 commit 0bc5909

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN go mod download
1313
# Copy the go source
1414
COPY /cmd/main.go main.go
1515
COPY /pkg pkg/
16+
COPY /api api/
17+
COPY /internal internal/
1618

1719
# Build
1820
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} GO111MODULE=on go build -a -o deployment-agent main.go

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/pluralsh/deployment-operator
33
go 1.21
44

55
require (
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

0 commit comments

Comments
 (0)