Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Show Docker build inputs
run: |
echo "SERVICE_NAME=${{ matrix.service }}"
awk 'toupper($1) == "FROM" { print "BASE_IMAGE=" $2; exit }' apps/bot/Dockerfile.service
docker version --format 'Client={{.Client.Version}} Server={{.Server.Version}}'

- name: Build service image
run: docker build apps/bot --file apps/bot/Dockerfile.service --build-arg SERVICE_NAME=${{ matrix.service }}

Expand Down
Loading