added tzdata package
This commit is contained in:
parent
349c25f9c9
commit
610522d311
2 changed files with 8 additions and 6 deletions
12
README.md
12
README.md
|
@ -9,12 +9,14 @@ available:
|
|||
- `coreutils`
|
||||
- `uv`
|
||||
- `just`
|
||||
- `tar`
|
||||
- `zstd`
|
||||
- `tzdata`
|
||||
|
||||
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
|
||||
Forgejo actions simpler. On my instance [git.ficd.sh](https://git.ficd.sh),
|
||||
where I've configured an additional label in the runner, I only need to add the
|
||||
following:
|
||||
These are sane dependencies for CI workflows -- so it made sense for me to
|
||||
create an image containing them. I use it to make creating new Forgejo actions
|
||||
simpler. On my instance [git.ficd.sh](https://git.ficd.sh), where I've
|
||||
configured an additional label in the runner, I only need to add the following:
|
||||
|
||||
```yaml
|
||||
runs-on: based-alpine
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM node:alpine3.22
|
||||
|
||||
# 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
|
||||
ENV PATH="/root/.local/bin:$PATH"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue