Files
chatwoot/.gitea/workflows/build.yaml
T
akadmin 745267d43f
Build Chatwoot / build (push) Failing after 24m29s
fix: correct Dockerfile path in docker/
2026-07-23 19:31:39 +00:00

26 lines
714 B
YAML

name: Build Chatwoot
on:
push:
branches:
- leal-cyber
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
run: |
git clone --depth 1 https://github.com/chatwoot/chatwoot.git /source
ls /source/docker/Dockerfile
- name: Build image
run: |
cd /source
DOCKER_BUILDKIT=0 docker build -t gitea.lealcyber.com/akadmin/chatwoot:test -f docker/Dockerfile --build-arg RAILS_ENV=production --build-arg BUNDLE_WITHOUT='development:test:enterprise' .
- name: Tag and verify
run: |
docker images gitea.lealcyber.com/akadmin/chatwoot:test