I'm not sure if this commit breaks everything in my monorepo. I think it will. Why am I doing this? Perhaps it's a bad idea. I don't fully understand how readTree works. My ignorance is costing me hours of time spent debugging. In an effort to better understand readTree, I'm removing the default values for my Nix expression parameters, which I believe have preventing errors from surfacing.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, briefcase, ... }:
 | |
| 
 | |
| pkgs.dockerTools.buildLayeredImage {
 | |
|   name = "blog";
 | |
|   tag = "latest";
 | |
|   config.ExposedPorts = {
 | |
|     "4242" = {};
 | |
|   };
 | |
|   config.Cmd = [ "${briefcase.blog}/bin/server" ];
 | |
|   maxLayers = 120;
 | |
| }
 |