20 lines
353 B
YAML
20 lines
353 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
name: Build the Docker image
|
|
with:
|
|
context: ./alpine/nginx/latest
|
|
run: docker build . --file Dockerfile --tag docker-dotclear:latest
|