add docker build.yml
All checks were successful
CI / build (push) Successful in 10s
CI / lint (push) Successful in 8s
Build Docker Image / build-docker (push) Successful in 55s

This commit is contained in:
2025-08-28 13:28:01 +02:00
parent e17829e7fa
commit 7875b8edef
2 changed files with 16 additions and 19 deletions

16
.github/workflows/docker-build.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: Build Docker Image
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t monitor-im-flur .

View File

@@ -1,19 +0,0 @@
default:
image: oven/bun
stages:
- build
- lint
build:
stage: build
script:
- bun install
- bun run build
lint:
stage: lint
script:
- bun install -g biome
- biome check
- biome lint