Last 12 weeks · 16 commits
2 of 6 standards met
Repository: denoland/deno_docker. Description: Latest dockerfiles and images for Deno - alpine, centos, debian, ubuntu Stars: 1010, Forks: 114. Primary language: Dockerfile. Languages: Dockerfile (61.2%), TypeScript (32.9%), Shell (5.9%). License: MIT. Homepage: https://hub.docker.com/r/denoland/deno Topics: deno, docker, dockerfile, typescript. Latest release: 1.16.4 (4y ago). Open PRs: 3, open issues: 43. Last activity: 10h ago. Community health: 37%. Top contributors: hayd, denobot, lucacasonato, bartlomieju, dsherret, kt3k, satyarohith, cjihrig, littledivy, KotlinIsland and others.
Dockerfile
Summary The Alpine-based Deno Docker image () fails to run .Executing results in multiple relocation errors related to what looks like missing symbols, suggesting that glibc-linked libraries are being picked up in a musl-based Alpine environment. Reproduce Inside the container: Actual Result fails with relocation errors: Expected Result should run successfully: and allow installing packages: Thoughts The image is based on Alpine (musl libc). Libraries located in (e.g. , , ) appear to be glibc-linked. Alpine tools like dynamically load these libraries and fail because musl does not provide the requested symbols This suggests that is contaminating the musl runtime environment. This PR #499 is likely related.