ffs
Some checks failed
Build and Push Docker Image / build (push) Failing after 1m56s

This commit is contained in:
Christoph Haas 2026-02-05 21:21:47 +01:00
parent 8d9c88d2e2
commit f000fc41b5

View file

@ -9,22 +9,18 @@ on:
env:
RAILS_ENV: production
CONTAINER_IMAGE: ${{ secrets.REGISTRY_IMAGE }}:${{ github.ref_name }}-${{ github.sha }}
DOCKER_HOST: tcp://localhost:2375
jobs:
build:
runs-on: docker
container:
image: node:22 # Optionally install Docker CLI in a step
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set Docker host
run: export DOCKER_HOST=tcp://forgejo-runner:2375
- name: Install Docker CLI
run: apt-get update && apt-get install -y docker.io