shlink/.github/workflows/ci-docker-image-build.yml
2023-01-22 21:01:46 +01:00

14 lines
262 B
YAML

name: Build docker image
on:
pull_request:
paths:
- 'Dockerfile'
jobs:
build-docker-image:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- run: docker build -t shlink-docker-image:temp .