This commit is contained in:
Simon Vieille 2022-12-31 13:24:59 +01:00
commit 576780068f
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 22 additions and 0 deletions

19
.woodpecker.yml Normal file
View file

@ -0,0 +1,19 @@
pipeline:
shellcheck:
image: koalaman/shellcheck
commands:
- shellcheck ./timeout
build_commit:
image: plugins/docker
secrets: [registry_user, registry_password]
settings:
username:
from_secret: registry_user
password:
from_secret: registry_password
registry: gitnet.fr
repo: gitnet.fr/${CI_REPO}
tags: latest
when:
event: [push]

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM alpine:3
ENTRYPOINT ["./timeout"]