added tzdata package

This commit is contained in:
Daniel Fichtinger 2025-07-18 01:15:21 -04:00
parent 349c25f9c9
commit 610522d311
2 changed files with 8 additions and 6 deletions

View file

@ -9,12 +9,14 @@ available:
- `coreutils` - `coreutils`
- `uv` - `uv`
- `just` - `just`
- `tar`
- `zstd`
- `tzdata`
These are the dependencies I install most commonly in workflows -- so it made These are sane dependencies for CI workflows -- so it made sense for me to
sense for me to create an image containing them. I use it to make creating new create an image containing them. I use it to make creating new Forgejo actions
Forgejo actions simpler. On my instance [git.ficd.sh](https://git.ficd.sh), simpler. On my instance [git.ficd.sh](https://git.ficd.sh), where I've
where I've configured an additional label in the runner, I only need to add the configured an additional label in the runner, I only need to add the following:
following:
```yaml ```yaml
runs-on: based-alpine runs-on: based-alpine

View file

@ -1,7 +1,7 @@
FROM node:alpine3.22 FROM node:alpine3.22
# Install extras # Install extras
RUN apk add --no-cache bash curl git coreutils uv just tar zstd RUN apk add --no-cache bash curl git coreutils uv just tar zstd tzdata
# ensure UV on path # ensure UV on path
ENV PATH="/root/.local/bin:$PATH" ENV PATH="/root/.local/bin:$PATH"