feat(docker): optimize final image to have no distro and optimize output executable more

This commit is contained in:
DJMrTV 2025-03-08 01:14:15 +01:00
commit 44ecbd46a7
3 changed files with 19 additions and 11 deletions

View file

@ -3,6 +3,17 @@ name = "splatoon-server-rust"
version = "0.1.0"
edition = "2021"
[profile.prod]
inherits = "release"
overflow-checks = false
strip = true
debug = false
debug-assertions = false
lto = true
incremental = false
[dependencies]
bytemuck = { version = "1.21.0", features = ["derive"] }
dotenv = "0.15.0"