feat: initial commit

This commit is contained in:
2026-06-26 14:41:51 -04:00
commit e749d9838d
2 changed files with 75 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:26-trixie-slim@sha256:a1d9d671994fc2d26e297ac56b4b1522a8bc7fa71c43b14cd1b1fe6c5116f7dc
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git rsync curl ca-certificates \
&& rm -rf /var/lib/apt/lists/*
ENV PIXI_VERSION=0.71.1
RUN curl -fsSL https://pixi.sh/install.sh | bash
ENV PATH="/root/.pixi/bin:${PATH}"