refactor: Replace Dockerfile with Dockerfile.fast for faster builds and add Dockerfile.test for testing purposes
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 5m40s

This commit is contained in:
2025-07-08 23:54:18 +07:00
parent 97711f26cb
commit 82f2d62bf8
6 changed files with 21 additions and 2513 deletions
+1 -3
View File
@@ -18,7 +18,6 @@ jobs:
with:
driver-opts: |
image=moby/buildkit:v0.12.0
network=host
- name: Log in to Gitea Registry
uses: docker/login-action@v3
@@ -46,5 +45,4 @@ jobs:
org.opencontainers.image.revision=${{ gitea.sha }}
org.opencontainers.image.created=${{ gitea.event.head_commit.timestamp }}
build-args: |
BUILDKIT_INLINE_CACHE=1
BUILDKIT_PROGRESS=plain
BUILDKIT_INLINE_CACHE=1
@@ -1,47 +0,0 @@
name: Publish Tabler Docker image
on:
push:
branches:
- tabler
jobs:
build-and-push-tabler:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
image=moby/buildkit:v0.12.0
- name: Log in to Gitea Registry
uses: docker/login-action@v3
with:
registry: git.shts.su
username: ${{ gitea.actor }}
password: ${{ secrets.ACTIONS_PAT }}
- name: Build and push Tabler Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
git.shts.su/${{ gitea.repository }}:tabler
git.shts.su/${{ gitea.repository }}:tabler-${{ gitea.sha }}
labels: |
org.opencontainers.image.title=S3 Lists Manager with Tabler UI
org.opencontainers.image.description=Modern S3 Lists Manager with Tabler UI design
org.opencontainers.image.version=tabler
org.opencontainers.image.revision=${{ gitea.sha }}
org.opencontainers.image.created=${{ gitea.event.head_commit.timestamp }}
build-args: |
BUILDKIT_INLINE_CACHE=1