ci: add ruby-dev to Dockerfile

Install ruby-dev package to allow native extension compilation in the container.
This commit is contained in:
2024-05-20 06:55:27 +02:00
parent 7e7b2a8bc9
commit efc55dbb58
+1 -1
View File
@@ -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 && \