feat: add Dockerfile for own workflow build docker image
Some checks failed
Docker / Images (push) Failing after 3m17s

This commit is contained in:
2026-03-20 22:04:35 +01:00
parent 5d67f517bd
commit 8a95c57cb5
2 changed files with 31 additions and 0 deletions

28
.github/workflows/docker_images.yaml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Docker
on:
push:
branches: ["main"]
jobs:
images:
name: Images
runs-on: ubuntu-latest
steps:
- name: Set docker chmod (temp solution)
run: sudo chmod 666 /var/run/docker.sock
- name: Docker - Login
uses: docker/login-action@v1
with:
registry: git.hashdot.co
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/images/build/Dockerfile
push: true
tags: git.hashdot.co/lars/pipelines/bun:latest