based-alpine/latest/Dockerfile

13 lines
257 B
Docker

FROM node:alpine3.22
# Install extras
RUN apk add --no-cache bash curl git coreutils uv just tar zstd
# ensure UV on path
ENV PATH="/root/.local/bin:$PATH"
# install python
RUN uv python install 3.13
RUN uv python install 3.12
SHELL ["/bin/bash", "-c"]