Update backend Dockerfile to use rust base image that aligns with test stage
Some checks failed
Podman Rootless Demo / test-backend (push) Successful in 6m27s
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Failing after 5m22s
Podman Rootless Demo / build-frontend (push) Failing after 16s

This commit is contained in:
continuist 2025-09-20 12:48:45 -04:00
parent ff4fd327d1
commit 1eb4b61092

View file

@ -1,5 +1,5 @@
# Multi-stage build for Rust backend
FROM rust:1.75-slim as builder
FROM docker.io/rust:1.89-slim as builder
# Install build dependencies
RUN apt-get update && apt-get install -y \