mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 18:08:42 -05:00
This commit updates dockerfile entrypoint to remove the explicit vmpooler executable path. Additionally, CMD is added to run a default command when runtime parameters are not passed in by the user. Without this change the vmpooler executable path is hardcoded into a directory that will not exist.
6 lines
50 B
Bash
6 lines
50 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
set -- vmpooler "$@"
|
|
|
|
exec "$@"
|