commit 19d10ade847a74236d5620389b5a500b585381e2 Author: bel Date: Sat Oct 28 08:37:25 2023 -0600 initial diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..043f287 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM docker:24.0.7-dind-alpine3.18 + +RUN apk update && apk --no-cache add bash curl diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..40bbbd0 --- /dev/null +++ b/build.sh @@ -0,0 +1,6 @@ +#! /bin/sh + +set -e + +docker build -f ./Dockerfile -t registry-app.inhome.blapointe.com:5001/docker:latest . +docker push registry-app.inhome.blapointe.com:5001/docker:latest