14 lines
391 B
YAML
14 lines
391 B
YAML
name: build docker image
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: docker.io/alpine:3.21.2
|
|
options: "--volume /run/user/1001/podman/podman.sock:/var/run/docker.sock"
|
|
steps:
|
|
- run: apk update && apk add --no-cache nodejs git docker
|
|
- uses: actions/checkout@v4
|
|
- uses: https://github.com/docker/setup-buildx-action@v3
|