sbp commented on issue #279: URL: https://github.com/apache/tooling-trusted-releases/issues/279#issuecomment-3751316803
@Smitaambiger Ah, actually, I got this working on Alpine! I had to use Nix, which installs glibc software, and the result is a mixture of musl and glibc components which may cause other problems. But if you're really interested in continuing to use Alpine, this is a potential way to do that. For simplicity I would still advise using a glibc container such as Debian, but in case you'd like to try using Alpine, which I'd be happy to support, here's what I did: ``` apk add biome@testing git make nix uv nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs nix-channel --update export PATH="/usr/local/nix/bin:$PATH" nix-env -p /usr/local/nix -iA nixpkgs.gcc nix-env -p /usr/local/nix -iA nixpkgs.python313 nix-env -p /usr/local/nix -iA nixpkgs.python313Packages.playwright nix-env -p /usr/local/nix -iA nixpkgs.pre-commit nix-env -p /usr/local/nix -iA nixpkgs.linuxHeaders cd ~ && git clone https://github.com/apache/tooling-trusted-releases cd tooling-trusted-releases && pre-commit install uv sync --frozen --all-groups ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
