d3a799e614
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.
11 lines
414 B
Docker
11 lines
414 B
Docker
FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d3c3db04a712e1898
|
|
|
|
ENV PATH=${PATH}:/root/.local/bin
|
|
|
|
RUN apt update && \
|
|
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 && \
|
|
pipx install pre-commit
|