diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5779749 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM debian:latest + +RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* diff --git a/publish.sh b/publish.sh new file mode 100755 index 0000000..9350728 --- /dev/null +++ b/publish.sh @@ -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 +