Skip to content

Commit

Permalink
Bump dockerfile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien authored Feb 6, 2025
1 parent 2ad7760 commit 95b20bb
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,11 +1,11 @@
FROM golang:1.22-alpine3.20 as builder
FROM golang:1.23-alpine3.21 as builder
WORKDIR $GOPATH/src/go.k6.io/k6
ADD . .
RUN apk --no-cache add git
RUN go install go.k6.io/xk6/cmd/xk6@latest
RUN xk6 build --with github.com/grafana/xk6-output-influxdb=. --output /tmp/k6

FROM alpine:3.20
FROM alpine:3.21
RUN apk add --no-cache ca-certificates && \
adduser -D -u 12345 -g 12345 k6
COPY --from=builder /tmp/k6 /usr/bin/k6
Expand Down

0 comments on commit 95b20bb

Please sign in to comment.