Skip to content

Commit

Permalink
fix(build): Specify default command for Nixery's own image
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tazjin committed Jul 26, 2019
1 parent eccf8fd commit 9839eef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ rec {
'';
in dockerTools.buildLayeredImage {
name = "nixery";
config.Cmd = ["${nixery-launch-script}/bin/nixery"];
contents = [
bashInteractive
cacert
Expand Down

0 comments on commit 9839eef

Please sign in to comment.