feat: Introduce multi-architecture Alpine Docker images with NVM, Bun, and Deno support

This commit is contained in:
2025-10-26 14:00:20 +00:00
parent 66fd354b95
commit 83a07732db
9 changed files with 432 additions and 350 deletions

View File

@@ -1,11 +0,0 @@
FROM node:18.15.0-alpine
LABEL author="Task Venture Capital GmbH <hello@task.vc>"
#pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
RUN apk add --no-cache curl iputils bind-tools bash && mkdir -p ${PNPM_HOME}
ENV PATH="$PNPM_HOME:$PATH"
RUN curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm;
RUN pnpm -v
ENV NODE_OPTIONS="--max_old_space_size=1000"