↳
In-reply-to
»
@xuu I have a theory as to why your pod was misbehaving too. I think because of the way you were building it
⤋ Read More
docker build
without any --build-arg VERSION=
or --build-arg COMMIT=
there was no version information in the built binary and bundled assets. Therefore cache busting would not work as expected. When introducing htmx and hyperscript to create a UI/UX SPA-like experience, this is when things fell apart a bit for you. I think....
@prologic@twtxt.net Yeah that is probably what was happening. I wish that go build
could embed the values that go install
does.