I see how to alter the port using datasette serve -p XXX per the docs. However, I'm packaging up to server the container on AppEngine flexible, which requires that the container is serving traffic on port 8080.
Is there a way to inject a non-default port into the Dockerfile, or should I just do something like sed to replace 8001 with 8080 after dataset package has done it's thing? Thanks for the advice.
I see how to alter the port using
datasette serve -p XXXper the docs. However, I'm packaging up to server the container on AppEngine flexible, which requires that the container is serving traffic on port 8080.datasette/Dockerfile
Line 41 in 7950105
Is there a way to inject a non-default port into the Dockerfile, or should I just do something like
sedto replace 8001 with 8080 afterdataset packagehas done it's thing? Thanks for the advice.