From efc55dbb58d444212b7b7789d0c71c923d49b4db Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Mon, 20 May 2024 06:55:27 +0200 Subject: [PATCH] ci: add ruby-dev to Dockerfile Install ruby-dev package to allow native extension compilation in the container. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d6748f2..c3ac36a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.22.3 ENV PATH=${PATH}:/root/.local/bin RUN apt update && \ - apt install -y python3 python3-pip ruby git pipx && \ + apt install -y python3 python3-pip ruby ruby-dev git pipx && \ rm -rf /var/lib/apt/lists/* && \ go install github.com/lietu/go-pre-commit@latest && \ go install golang.org/x/tools/cmd/goimports@latest && \