You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need an alpine docker image with deno and node for our monorepo. We still have some node scripts, so we need both.
I tried the following:
FROM node:20-alpine3.20
COPY --from=denoland/deno:bin-2.0.2 /deno /usr/local/bin/deno
RUN apk --update add libc6-compat
But it did not work. I think the problem ist, that the deno bin is compiled against glibc and won't work with alpines musl-libc,
I tried to solve this problem with lib6-compat but this did not work.
I think the best solution woul be to add extra bin images for alpine: e.g. denoland/deno:bin-2.0.2-alpine
The text was updated successfully, but these errors were encountered:
I need an alpine docker image with deno and node for our monorepo. We still have some node scripts, so we need both.
I tried the following:
But it did not work. I think the problem ist, that the deno bin is compiled against glibc and won't work with alpines musl-libc,
I tried to solve this problem with lib6-compat but this did not work.
I think the best solution woul be to add extra bin images for alpine: e.g.
denoland/deno:bin-2.0.2-alpine
The text was updated successfully, but these errors were encountered: