Compare commits
9 Commits
Author | SHA1 | Date |
---|---|---|
Gertjan Krol | dd280fa559 | |
Gertjan Krol | 46f3b6c367 | |
Gertjan Krol | ceefa6015e | |
Gertjan Krol | 451de112eb | |
Gertjan Krol | 19b80e0040 | |
Gertjan Krol | 5ee8ada0f7 | |
Gertjan Krol | d4f9c39cea | |
Gertjan Krol | a18978d9ec | |
Gertjan Krol | 0c237b908e |
|
@ -8,22 +8,21 @@ jobs:
|
||||||
build_push:
|
build_push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: docker:latest
|
container: docker:latest
|
||||||
env:
|
|
||||||
REGISTRY: git.gertjankrol.nl
|
|
||||||
IMAGE_NAMESPACE: docker/toolkit
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies # not present in `docker` container but needed for `checkout` action
|
- name: Install dependencies # not present in `docker` container but needed for `checkout` action
|
||||||
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: Docker login
|
- name: Docker login
|
||||||
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} https://${REGISTRY}
|
uses: actions/docker-login@v2
|
||||||
|
with:
|
||||||
|
registry: ${{secrets.DOCKER_REGISTRY}}
|
||||||
|
username: ${{secrets.DOCKER_USERNAME}}
|
||||||
|
password: ${{secrets.DOCKER_PASSWORD}}
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: actions/docker-build-push@v4
|
uses: actions/docker-build-push@v4
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags:
|
tags: |
|
||||||
${REGISTRY}/${IMAGE_NAMESPACE}:${{ github.ref_name }}
|
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
|
||||||
${REGISTRY}/${IMAGE_NAMESPACE}:latest
|
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest
|
||||||
- name: Inspect image
|
|
||||||
run: ${REGISTRY}/${IMAGE_NAMESPACE}:${{ 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,7 +3,13 @@ All notable changes to this package will be documented in this file
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
## 1.0.0 - 2023-09-01
|
## 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.0.1 - 2023-09-01
|
||||||
- Updated workflows [patch]
|
- Updated workflows [patch]
|
||||||
- Bump dependencies [patch]
|
- Bump dependencies [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