Skip to content

Commit

Permalink
Merge pull request #103 from grafana/102-add-go-tooling-to-docker-image
Browse files Browse the repository at this point in the history
add go tooling to docker image
  • Loading branch information
szkiba authored Nov 12, 2024
2 parents da01813 + 081726e commit 3083799
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.goreleaser
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:12.6-slim
FROM golang:1.22.9-alpine3.20

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && update-ca-certificates && \
addgroup --system --gid 127 docker && adduser --uid 1001 --gid 127 --disabled-password runner
RUN addgroup -g 127 -S docker && adduser -D -u 1001 -G docker runner && \
apk update && apk add git

COPY k6registry /usr/bin/

Expand Down

0 comments on commit 3083799

Please sign in to comment.