add docker build.yml
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
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 .
-19
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