From dd280fa559a8135ae51a7daa7ef5e599b239a484 Mon Sep 17 00:00:00 2001 From: Gertjan Krol Date: Sat, 2 Sep 2023 19:29:13 +0200 Subject: [PATCH] 1.0.3 - Added `bash` and `zstd` to image --- .forgejo/workflows/release.yaml | 4 ---- .forgejo/workflows/test-build.yaml | 2 +- CHANGELOG.md | 3 +++ Dockerfile | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 12b3aeb..f71105d 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -26,7 +26,3 @@ jobs: tags: | ${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}} ${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest - env: - ACTIONS_RUNTIME_TOKEN: '' #https://gitea.com/gitea/act_runner/issues/119#issuecomment-738294 - - name: Inspect image - run: docker inspect ${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}} diff --git a/.forgejo/workflows/test-build.yaml b/.forgejo/workflows/test-build.yaml index 8ec837e..53e927e 100644 --- a/.forgejo/workflows/test-build.yaml +++ b/.forgejo/workflows/test-build.yaml @@ -13,7 +13,7 @@ jobs: run: apk add --no-cache git nodejs - name: Check out repository uses: actions/checkout@v3 - - name: Build and push + - name: Build image uses: actions/docker-build-push@v4 with: push: false diff --git a/CHANGELOG.md b/CHANGELOG.md index b87c95e..5db634a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this package will be documented in this file ## Unreleased +## 1.0.3 - 2023-09-02 +- Added `bash` and `zstd` to image [patch] + ## 1.0.2 - 2023-09-01 - Fix changelog and release workflow [patch] diff --git a/Dockerfile b/Dockerfile index a1af603..fc45f81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM alpine:3.18 # Install base tools -RUN apk add --no-cache curl docker git htop nodejs npm unzip zip +RUN apk add --no-cache bash curl docker git htop nodejs npm unzip zip zstd