mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-24 03:05:12 -05:00
* dev-bug: fixed vscode freezes * test: refactor database init to support tests * mealplan CRUD testing * restructure test folder * git attributes * tests: migration, settings, theme routes testing * docker-file shrink * rebuild * refactor: moving directories around * adding funding Co-authored-by: Hayden <hay-kot@pm.me>
50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
name: Docker Build Alpine
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- new-tests
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
#
|
|
# Checkout
|
|
#
|
|
- name: checkout code
|
|
uses: actions/checkout@v2
|
|
#
|
|
# Setup QEMU
|
|
#
|
|
- name: Set up QEMU
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v1
|
|
# with:
|
|
# image: tonistiigi/binfmt:latest
|
|
# platforms: all
|
|
#
|
|
# Setup Buildx
|
|
#
|
|
- name: install buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
with:
|
|
install: true
|
|
#
|
|
# Login to Docker Hub
|
|
#
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
#
|
|
# Build
|
|
#
|
|
- name: build the image
|
|
run: |
|
|
docker build --push \
|
|
--tag hkotel/mealie:alpine \
|
|
--platform linux/amd64,linux/arm/v7,linux/arm64 .
|