Initial commit

This commit is contained in:
mike 2024-06-15 22:31:46 +01:00
commit 1318651143
3 changed files with 26 additions and 0 deletions

16
.woodpecker.yaml Normal file
View 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
View file

@ -0,0 +1,5 @@
FROM debian:bookworm-slim
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y git

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# Bookworm-Git Docker Image
A version of the lightweight debian:bookworm-slim with git pre-installed.
[![status-badge](https://wci.alveus.dev/api/badges/2/status.svg)](https://wci.alveus.dev/repos/2)