2025-01-13 20:14:17 +01:00
|
|
|
name: build docker image
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2025-01-13 20:18:58 +01:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: docker.io/alpine:3.21.2
|
2025-01-13 20:38:51 +01:00
|
|
|
options: "--volume /run/user/1001/podman/podman.sock:/var/run/docker.sock"
|
2025-01-13 20:14:17 +01:00
|
|
|
steps:
|
2025-01-13 20:20:17 +01:00
|
|
|
- run: apk update && apk add --no-cache nodejs git docker
|
2025-01-13 20:14:17 +01:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: https://github.com/docker/setup-buildx-action@v3
|