task(ci): build base images
Some checks failed
CI / build-base-worker (push) Failing after 32s
CI / build-base-app (push) Successful in 40s
CI / build-base-worker-supervisord (push) Failing after 2m19s

This commit is contained in:
Brock H Caldwell
2026-03-10 23:48:12 -05:00
parent fb3e7b20ff
commit 939660a715

View File

@@ -57,8 +57,18 @@ jobs:
username: "${{ vars.REGISTRY_USER }}"
password: "${{ vars.REGISTRY_PASS }}"
- name: Create torsearch-scheduler docker image
run: |
export ALPINE_VERSION=3.22
docker buildx build --platform=linux/amd64 -f docker/Dockerfile.base.worker -t code.caldwell.digital/home/torsearch-base-worker-supervisord:latest --build-arg "ALPINE_VERSION=${ALPINE_VERSION}" .
docker push --platform=linux/amd64 code.caldwell.digital/home/torsearch-base-worker-supervisord:latest
- name: Build and push
uses: docker/build-push-action@v5
env:
ALPINE_VERSION: 3.22
with:
context: .
push: true
file: docker/Dockerfile.base.worker
platforms: linux/amd64,linux/arm64
tags: |
code.caldwell.digital/home/torsearch-base-worker-supervisord:latest
# - name: Create torsearch-scheduler docker image
# run: |
# docker buildx build --platform=linux/amd64 -f docker/Dockerfile.base.worker -t code.caldwell.digital/home/torsearch-base-worker-supervisord:latest --build-arg "ALPINE_VERSION=${ALPINE_VERSION}" .