From 610522d311255b4671af6e661503942787e6eb8d Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Fri, 18 Jul 2025 01:15:21 -0400 Subject: [PATCH] added tzdata package --- README.md | 12 +++++++----- latest/Dockerfile | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0c5695f..3469fa1 100644 --- a/README.md +++ b/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 diff --git a/latest/Dockerfile b/latest/Dockerfile index ba56855..532d577 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -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"