Skip to content

Commit

Permalink
feat: latest golang docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
josmo committed Jan 25, 2024
1 parent 3335b22 commit e6e9843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.21.4 as builder
FROM golang:1.21.6 as builder

# Copy in the go src
WORKDIR /app
Expand All @@ -11,7 +11,7 @@ COPY go.sum ./

RUN go mod download

RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager github.com/uswitch/nidhogg/cmd/manager
RUN CGO_ENABLED=0 GOOS=linux go build -a -o manager github.com/uswitch/nidhogg/cmd/manager

# Copy the controller-manager into a thin image
FROM ubuntu:latest
Expand Down

0 comments on commit e6e9843

Please sign in to comment.