begin ungleich-mail
This commit is contained in:
parent
34b79dfd54
commit
e8609561b3
2 changed files with 19 additions and 0 deletions
16
build.sh
Executable file
16
build.sh
Executable file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -exu
|
||||||
|
|
||||||
|
if [ $# -ne 2 ]; then
|
||||||
|
echo "$0 <container> <version>" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
container=$1; shift
|
||||||
|
version=$1; shift
|
||||||
|
|
||||||
|
name=harbor.k8s.ungleich.ch:ungleich-public/${container}
|
||||||
|
|
||||||
|
tag=${name}:${version}
|
||||||
|
|
||||||
|
docker build -t ${tag} .
|
3
ungleich-mail/Dockerfile
Normal file
3
ungleich-mail/Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
FROM alpine:3.19
|
||||||
|
|
||||||
|
RUN apk add --update postfix
|
Loading…
Reference in a new issue