Skip to content

Commit

Permalink
feat(dockerfile): update base image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPatsula committed Jul 8, 2024
1 parent 18aa6c9 commit e470cd1
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 with the golang image
FROM golang:1.16-alpine AS build
FROM golang:1.22.5-alpine AS build

# Add git
RUN apk add git
Expand All @@ -17,7 +17,7 @@ COPY . .
RUN CGO_ENABLED=0 go install .

# Generate final image
FROM alpine:3.13
FROM alpine:3.19.2
RUN apk --update --no-cache add ca-certificates
COPY --from=build /go/bin/argo-controller /usr/local/bin/argo-controller
ENTRYPOINT [ "/usr/local/bin/argo-controller" ]

0 comments on commit e470cd1

Please sign in to comment.