Skip to content

Commit

Permalink
fix Dockerfile (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
zreigz authored Jan 19, 2024
1 parent 9a282e7 commit 0bc5909
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RUN go mod download
# Copy the go source
COPY /cmd/main.go main.go
COPY /pkg pkg/
COPY /api api/
COPY /internal internal/

# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} GO111MODULE=on go build -a -o deployment-agent main.go
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/pluralsh/deployment-operator
go 1.21

require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/Masterminds/sprig/v3 v3.2.3
github.com/evanphx/json-patch v5.6.0+incompatible
github.com/fluxcd/flagger v1.35.0
Expand Down Expand Up @@ -44,7 +45,6 @@ require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/MakeNowJust/heredoc v1.0.0 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.1 // indirect
github.com/Masterminds/squirrel v1.5.3 // indirect
github.com/Yamashou/gqlgenc v0.14.0 // indirect
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
Expand Down

0 comments on commit 0bc5909

Please sign in to comment.