Debian-curl

This commit is contained in:
Your Name 2025-05-12 21:53:43 +12:00
parent 98689ab80f
commit c15e91cde8
2 changed files with 11 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM debian:latest
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*

8
publish.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# build the gitea.jde.nz/public/bb64:debian-curl docker image
docker build -t gitea.jde.nz/public/debian-curl:latest -f Dockerfile .
# push the gitea.jde.nz/public/bb64:debian-curl docker image to the gitea.jde.nz registry
docker push gitea.jde.nz/public/debian-curl:latest