From 1e445d10905b2a804760169de73f487bad17bca7 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Mon, 14 Jul 2025 23:17:50 -0400 Subject: [PATCH] updated latest --- justfile | 4 ++++ latest/Dockerfile | 9 ++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) 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"]