Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add windows Dockerfile template
pcaskey committed Jul 6, 2018
1 parent a951603 commit 960f034
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion configBuilder.sh
@@ -584,7 +584,20 @@ sed "s#keystorePass=\"password\"#keystorePass=\"${STOREPWD}\"#" ${TOMCFG}/server
#
# copy Dockerfile template
#
cp /Dockerfile.template ${PWD}/Dockerfile
case "$BUILD_ENV" in
LINUX | linux)
echo "Generating Dockerfile for a Linux container"
cp /Dockerfile.template ${PWD}/Dockerfile
;;
WINDOWS | windows)
echo "Generating Dockerfile for a Windows container"
cp /Dockerfile.windows.template ${PWD}/Dockerfile
;;
*)
echo "Environment variable BUILD_ENV was not found or had an incorrect value (only LINUX|WINDOWS is supported). Terminating."
exit 1
;;
esac


# if the user chose to use secrets, then generate a directory containing the config with secrets removed

0 comments on commit 960f034

Please sign in to comment.