updated latest

This commit is contained in:
Daniel Fichtinger 2025-07-14 23:17:50 -04:00
parent 9b89a536d5
commit 1e445d1090
2 changed files with 12 additions and 1 deletions

View file

@ -15,3 +15,7 @@ run arg="latest":
#!/bin/sh
cd {{arg}}
docker run --rm -it {{name}} bash
# login
login:
docker login git.ficd.sh

View file

@ -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"]