mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
docker
This commit is contained in:
parent
45e74bde71
commit
594a77a2d1
1 changed files with 18 additions and 0 deletions
18
.github/workflows/dockerimage.yml
vendored
Normal file
18
.github/workflows/dockerimage.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Docker Image CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build the Docker image
|
||||||
|
run: docker build -f Dockerfile.CompressImages . -t dpaste
|
Loading…
Reference in a new issue