mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
15 lines
264 B
YAML
15 lines
264 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 .
|