This commit is contained in:
quackerd 2020-04-23 04:44:38 -04:00
parent 7e1e301005
commit 0ff3954be7
Signed by: d
GPG Key ID: 590A22374D0B819F
2 changed files with 22 additions and 0 deletions

View File

@ -10,3 +10,22 @@ steps:
- cd build
- cmake ../
- make
---
trigger:
event:
- cron
cron:
- hourly
steps:
- name: docker-image-update
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: quackerd/fedora
tags: latest

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM fedora:latest
RUN dnf install -y cmake make clang nasm xorriso lld grub2-pc-modules grub2-tools-extra
CMD ["/bin/sh"]