Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gabrielrufino/dockerfile-ci

Continuous Integration for Dockerfile
https://github.com/gabrielrufino/dockerfile-ci

ci docker dockerfile

Last synced: 7 days ago
JSON representation

Continuous Integration for Dockerfile

Awesome Lists containing this project

README

        

# Dockerfile CI

Continuous Integration for Dockerfile

## Getting started

```yml
name: CI

on:
- push

jobs:
dockerfile-ci:
name: Dockerfile CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gabrielrufino/dockerfile-ci@main
with:
image-name: gabrielrufino/image
```