Skip to content

Commit

Permalink
Merge 43c9685 into fc1900e
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien authored Aug 29, 2023
2 parents fc1900e + 43c9685 commit 8c90490
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.20-alpine3.17 as builder
FROM golang:1.20-alpine3.18 as builder
WORKDIR $GOPATH/src/go.k6.io/k6
COPY . .
RUN apk --no-cache add git=~2
RUN CGO_ENABLED=0 go install -a -trimpath -ldflags "-s -w -X go.k6.io/k6/lib/consts.VersionDetails=$(date -u +"%FT%T%z")/$(git describe --tags --always --long --dirty)"

# Runtime stage
FROM alpine:3.17 as release
FROM alpine:3.18 as release

# hadolint ignore=DL3018
RUN apk add --no-cache ca-certificates && \
Expand Down

0 comments on commit 8c90490

Please sign in to comment.