Skip to content

feat: new docker build image #185

feat: new docker build image

feat: new docker build image #185

Workflow file for this run

name: Build GLPI Docker Image
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker Image (tag 11)
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
push: false
tags: glpi:11
platforms: linux/amd64