fix: correct Dockerfile path in docker/
Build Chatwoot / build (push) Failing after 24m29s

This commit is contained in:
2026-07-23 19:31:39 +00:00
parent d93468ffd4
commit 745267d43f
+5 -5
View File
@@ -10,16 +10,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Prepare source
- name: Checkout source
run: |
git clone --depth 1 https://github.com/chatwoot/chatwoot.git /source
ls -la /source/Dockerfile
ls /source/docker/Dockerfile
- name: Build image
run: |
cd /source
DOCKER_BUILDKIT=0 docker build -t gitea.lealcyber.com/akadmin/chatwoot:test --build-arg RAILS_ENV=production --build-arg BUNDLE_WITHOUT='development:test:enterprise' .
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: Push
- name: Tag and verify
run: |
echo "Build complete. Push will be configured later."
docker images gitea.lealcyber.com/akadmin/chatwoot:test