From d3a799e614ab05f01578ceff735c502339916f34 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 3 Dec 2025 08:14:46 +0100 Subject: [PATCH] fix: update libffi package in Dockerfile installation Update the Dockerfile to install the correct version of the libffi package from libffi8 to libffi-dev. This change resolves compatibility issues during the build process and ensures that all necessary dependencies for the Docker image are correctly configured. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f49d463..2a80acf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d ENV PATH=${PATH}:/root/.local/bin RUN apt update && \ - apt install -y python3 python3-pip ruby ruby-dev git pipx libffi8 && \ + apt install -y python3 python3-pip ruby ruby-dev git pipx libffi-dev && \ rm -rf /var/lib/apt/lists/* && \ go install github.com/lietu/go-pre-commit@latest && \ go install golang.org/x/tools/cmd/goimports@latest && \