Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ricoberger committed Dec 20, 2022
1 parent e028177 commit afd69fa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 464 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.19.3-alpine3.16 as build
FROM golang:1.19.4-alpine3.17 as build
RUN apk update && apk add git make
RUN mkdir /build
WORKDIR /build
COPY . .
RUN export CGO_ENABLED=0 && make build

FROM alpine:3.16.3
FROM alpine:3.17.0
RUN apk add --no-cache --update bash curl ca-certificates
COPY --from=build /build/bin/script_exporter /bin/script_exporter
EXPOSE 9469
Expand Down
11 changes: 6 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module github.com/ricoberger/script_exporter
go 1.19

require (
github.com/go-kit/log v0.2.0
github.com/golang-jwt/jwt/v4 v4.4.2
github.com/go-kit/log v0.2.1
github.com/golang-jwt/jwt/v4 v4.4.3
github.com/prometheus/client_golang v1.14.0
github.com/prometheus/common v0.37.0
golang.org/x/sys v0.2.0
github.com/prometheus/common v0.39.0
golang.org/x/sys v0.3.0
gopkg.in/yaml.v2 v2.4.0
)

Expand All @@ -16,7 +16,8 @@ require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
Expand Down
Loading

0 comments on commit afd69fa

Please sign in to comment.