Tags: hhy5277/sourcegraph-1
Tags
Reduce the number of aws code commit repos fetched per api call from … …50 to 25 (sourcegraph#857)
frontend: correct docker:cmd directive form `serve` is treated as a shell form and hence runs: ``` /sbin/tini -- /usr/local/bin/frontend /bin/sh -c serve ``` Which is incorrect. Instead, we want `["serve"]` which is treated as parameters to `ENTRYPOINT` by Docker, i.e.: ``` /sbin/tini -- /usr/local/bin/frontend serve ```
frontend: specify default serve command arg So that we do not need to specify it as part of deployment, i.e. we can remove: https://github.com/sourcegraph/deploy-sourcegraph/blob/0cbd3d084f97ad8f984d307e7d85f0f8983bd5cb/base/frontend/sourcegraph-frontend.Deployment.yaml#L28
PreviousNext