Add build scripts for docker container

This commit is contained in:
Thomas Kolb 2024-08-26 00:01:59 +02:00
parent 10f634d144
commit e5d668c7cd
3 changed files with 12 additions and 0 deletions

4
doc/docker/Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM debian:stable
RUN apt update && apt install -y ruby-rubygems make
RUN gem install asciidoctor asciidoctor-diagram

3
doc/docker/build.sh Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
docker build -t git.tkolb.de/amateurfunk/hamnet70/asciidoctor:1.0

5
doc/docker/upload.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/sh
docker login
docker upload git.tkolb.de/amateurfunk/hamnet70/asciidoctor:1.0
docker logout