THESE WORDS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, ARISING FROM, OUT OF OR IN CONNECTION WITH THE WORDS.
Latest posts:
"Why is the Rust compiler so slow?"
I spent a month repeatedly building my website in Docker, and now have horrors to share.
I've got a problem.
My website (the one you're reading right now) is mainly served by a single Rust binary. For far too long now, every time I wanted to make a change, I would:
- Build a new statically linked binary (with
--target=x86_64-unknown-linux-musl
) - Copy it to my server
- Restart the website
This is... not ideal.
So instead, I'd like to switch to deploying my website with containers (be it Docker, Kubernetes, or otherwise), matching the vast majority of software deployed any time in the last decade.
…