dind and install node ?

This commit is contained in:
Xaver Russ 2025-07-14 00:22:44 +02:00
parent 3770f74237
commit 14260f2de1

View file

@ -5,6 +5,7 @@ on:
- main
paths:
- 'containers/${{ github.workflow }}/**'
- 'containers/.forgejo/workflows/ansible.yml'
workflow_dispatch: {}
schedule:
- cron: '0 20 * * 5'
@ -18,12 +19,14 @@ jobs:
- ${{ matrix.arch }}
- docker
container:
image: alpine:edge
image: docker:dind
env:
DOCKER_TLS_CERTDIR: ""
steps:
- name: Install Docker and Node.js
- name: Install Node.js and dependencies
run: |
apk update
apk add --no-cache docker docker-compose nodejs npm git bash
apk add --no-cache nodejs npm git bash
dockerd &
sleep 5
docker version
@ -62,12 +65,14 @@ jobs:
needs: build-and-push
runs-on: amd64
container:
image: alpine:edge
image: docker:dind
env:
DOCKER_TLS_CERTDIR: ""
steps:
- name: Install Docker and Node.js
- name: Install Node.js and dependencies
run: |
apk update
apk add --no-cache docker docker-compose nodejs npm git bash
apk add --no-cache nodejs npm git bash
dockerd &
sleep 5
docker version