diff --git a/justfile b/justfile index 27d15ea..cda6312 100644 --- a/justfile +++ b/justfile @@ -15,3 +15,7 @@ run arg="latest": #!/bin/sh cd {{arg}} docker run --rm -it {{name}} bash + +# login +login: + docker login git.ficd.sh diff --git a/latest/Dockerfile b/latest/Dockerfile index 0953007..619deaf 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -1,6 +1,13 @@ -FROM node:alpine +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"]