Add a docker build step.
Some checks failed
Docker Build / Build and Push Backend Image (push) Failing after 1m34s
Docker Build / Build and Push Frontend Image (push) Failing after 40s
Check / Backend (pull_request) Successful in 5m50s
Check / Frontend (pull_request) Successful in 1m54s

This commit is contained in:
Drew 2025-09-27 20:28:17 -07:00
parent ff6837a751
commit 6225344df9
10 changed files with 219 additions and 24 deletions

15
backend/Cargo.lock generated
View file

@ -289,6 +289,7 @@ dependencies = [
"serde",
"sqlx",
"tokio",
"tower-http",
"tracing",
"tracing-subscriber",
"uuid",
@ -3490,6 +3491,20 @@ dependencies = [
"tracing",
]
[[package]]
name = "tower-http"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
dependencies = [
"bitflags 2.9.3",
"bytes",
"http 1.3.1",
"pin-project-lite",
"tower-layer",
"tower-service",
]
[[package]]
name = "tower-layer"
version = "0.3.3"