Skip to content

Commit

Permalink
Merge dependabot upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
jwkohnen committed Dec 11, 2024
3 parents aeed752 + ce3cfec + 16aec15 commit 683e5a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.23.3 as build
FROM golang:1.23.4 as build

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
WORKDIR /conntrack-stats-exporter
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go mod verify
RUN ./build.sh

FROM alpine:3.20.3
FROM alpine:3.21.0
COPY --from=build /conntrack-stats-exporter/conntrack-stats-exporter /usr/local/sbin/
RUN apk update && \
apk --no-cache upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-race
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.3 as build
FROM golang:1.23.4 as build
WORKDIR /conntrack-stats-exporter
COPY go.mod go.sum ./
RUN go mod download
Expand Down

0 comments on commit 683e5a6

Please sign in to comment.