13 lines
248 B
Docker
13 lines
248 B
Docker
FROM node:alpine3.22
|
|
|
|
# Install extras
|
|
RUN apk add --no-cache bash curl git coreutils uv just
|
|
|
|
# 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"]
|