Compare commits

..

1 Commits

Author SHA1 Message Date
Gertjan Krol dd280fa559 1.0.3 - Added `bash` and `zstd` to image
Test / test_build (push) Successful in 33s Details
Release / build_push (push) Successful in 30s Details
2023-09-02 19:29:13 +02:00
4 changed files with 5 additions and 6 deletions

View File

@ -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}}

View File

@ -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

View File

@ -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]

View File

@ -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