fix(build): Specify default command for Nixery's own image
When running on AppEngine, the image is expected to be configured with a default entry point / command. This sets the command to the wrapper script, so that the image can actually run properly when deployed.
This commit is contained in:
parent
6dd0ac3189
commit
6207782434
1 changed files with 1 additions and 0 deletions
|
@ -92,6 +92,7 @@ rec {
|
||||||
'';
|
'';
|
||||||
in dockerTools.buildLayeredImage {
|
in dockerTools.buildLayeredImage {
|
||||||
name = "nixery";
|
name = "nixery";
|
||||||
|
config.Cmd = ["${nixery-launch-script}/bin/nixery"];
|
||||||
contents = [
|
contents = [
|
||||||
bashInteractive
|
bashInteractive
|
||||||
cacert
|
cacert
|
||||||
|
|
Loading…
Reference in a new issue