11 lines
348 B
Docker
11 lines
348 B
Docker
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}"
|