parent
46f3b6c367
commit
0351b5d3e5
|
@ -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}}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue