Skip to content

Commit

Permalink
Bumped versions in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien committed Sep 29, 2022
1 parent 817d382 commit bc1906b
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 @@
# Multi-stage build to generate custom k6 with extension
FROM golang:1.17-alpine as builder
FROM golang:1.19-alpine as builder
WORKDIR $GOPATH/src/go.k6.io/k6
ADD . .
RUN apk --no-cache add git
Expand All @@ -9,7 +9,7 @@ RUN CGO_ENABLED=0 xk6 build \
--output /tmp/k6

# Create image for running k6 with output for Prometheus Remote Write
FROM alpine:3.15
FROM alpine:3.16
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 bc1906b

Please sign in to comment.