Fix Docker Builds in CI (#21)
All checks were successful
Check / Backend (push) Successful in 8m44s
Check / Frontend (push) Successful in 36s
Docker Build / Build and Push Backend Image (push) Successful in 5m27s
Docker Build / Build and Push Frontend Image (push) Successful in 1m59s

Reviewed-on: #21
Co-authored-by: Drew Galbraith <drew@tiramisu.one>
Co-committed-by: Drew Galbraith <drew@tiramisu.one>
This commit is contained in:
Drew 2025-11-30 06:08:48 +00:00 committed by Drew
parent 15fabd126e
commit 16f37e3802
2 changed files with 9 additions and 5 deletions

View file

@ -25,7 +25,7 @@ COPY src/ src/
COPY migrations/ migrations/
# Build the application
RUN cargo build --release
RUN --mount=source=.sqlx,target=.sqlx cargo build --release
# Runtime stage
FROM alpine:latest