added just to image

This commit is contained in:
Daniel Fichtinger 2025-07-13 23:47:13 -04:00
parent 87bc863c6a
commit 9b89a536d5
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ available:
- `git` - `git`
- `coreutils` - `coreutils`
- `uv` - `uv`
- `just`
These are the dependencies I install most commonly in workflows -- so it made These are the dependencies I install most commonly in workflows -- so it made
sense for me to create an image containing them. I use it to make creating new sense for me to create an image containing them. I use it to make creating new

View file

@ -1,6 +1,6 @@
FROM node:alpine FROM node:alpine
# Install extras # Install extras
RUN apk add --no-cache bash curl git coreutils uv RUN apk add --no-cache bash curl git coreutils uv just
SHELL ["/bin/bash", "-c"] SHELL ["/bin/bash", "-c"]