Initial commit
This commit is contained in:
commit
1318651143
16
.woodpecker.yaml
Normal file
16
.woodpecker.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
steps:
|
||||
- name: Build and Publish
|
||||
when:
|
||||
- branch: main
|
||||
event: push
|
||||
- event: tag
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
platforms: linux/amd64
|
||||
repo: forge.alveus.dev/${CI_REPO_OWNER}/${CI_REPO_NAME}
|
||||
registry: forge.alveus.dev
|
||||
tags: latest
|
||||
username:
|
||||
from_secret: REGISTRY_USER
|
||||
password:
|
||||
from_secret: REGISTRY_TOKEN
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
FROM debian:bookworm-slim
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y git
|
Loading…
Reference in a new issue