Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
Gertjan Krol | dd280fa559 |
|
@ -26,7 +26,3 @@ jobs:
|
||||||
tags: |
|
tags: |
|
||||||
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
|
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
|
||||||
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest
|
${{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
|
run: apk add --no-cache git nodejs
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Build and push
|
- name: Build image
|
||||||
uses: actions/docker-build-push@v4
|
uses: actions/docker-build-push@v4
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
|
|
|
@ -3,6 +3,9 @@ All notable changes to this package will be documented in this file
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 1.0.3 - 2023-09-02
|
||||||
|
- Added `bash` and `zstd` to image [patch]
|
||||||
|
|
||||||
## 1.0.2 - 2023-09-01
|
## 1.0.2 - 2023-09-01
|
||||||
- Fix changelog and release workflow [patch]
|
- Fix changelog and release workflow [patch]
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM alpine:3.18
|
FROM alpine:3.18
|
||||||
|
|
||||||
# Install base tools
|
# 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