Initial commit

This commit is contained in:
Johannes Feichtner
2022-06-19 21:31:48 +02:00
commit cbe7fd719f
14 changed files with 1905 additions and 0 deletions

15
build/build.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#
# Copyright (c) Johannes Feichtner <johannes@web-wack.at>
#
# Script to build letsencrypt-esxi VIB using VIB Author
LOCALDIR=$(dirname "$(readlink -f "$0")")
cd "${LOCALDIR}/.." || exit
docker rmi -f letsencrypt-esxi 2> /dev/null
rm -rf artifacts
docker build -t letsencrypt-esxi -f build/Dockerfile .
docker run -i -v "${PWD}"/artifacts:/artifacts letsencrypt-esxi sh << COMMANDS
cp letsencrypt-esxi/build/w2c-letsencrypt-esxi* /artifacts
COMMANDS