Skip to content

Commit

Permalink
Merge pull request #23 from docker/addWindowsUpstream
Browse files Browse the repository at this point in the history
add windows Dockerfile template
  • Loading branch information
pcaskey authored Jul 6, 2018
2 parents a951603 + 960f034 commit 456b007
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion configBuilder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 456b007

Please sign in to comment.