feat: Upgrade tinymceclean image to Alpine 8 which has ARM64 image ve… #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build All Images via Docker Compose | |
on: | |
push: | |
paths: | |
- '.github/workflows/build-all-images.yml' | |
- 'stack/**/*.Dockerfile' | |
- 'stack/**/*.dockerignore' | |
- 'docker-compose-dev.yml' | |
branches: [ "development" ] | |
pull_request: | |
branches: [ "development" ] | |
paths: | |
- '.github/workflows/build-all-images.yml' | |
- 'stack/**/*.Dockerfile' | |
- 'stack/**/*.dockerignore' | |
- 'docker-compose-dev.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout submodules | |
run: | | |
git submodule update --init stack/dataserver/dataserver | |
git submodule update --init stack/stream-server/stream-server | |
git submodule update --init stack/tinymce-clean-server/tinymce-clean-server | |
- name: Bootstrap config | |
run: cp .env_example .env | |
- name: Build the stack | |
run: BUILDKIT_PROGRESS=plain docker compose -f docker-compose-dev.yml build |