🔥(backend) remove rust from the back-builder Dockerfile stage

Rust was installed to build the pycrdt wheel. There is no need anymore
to install rust, a wheel is available for this package.
This commit is contained in:
Manuel Raynaud 2026-03-05 08:11:44 +01:00
parent a028df54ce
commit 7cceffff13
No known key found for this signature in database
GPG key ID: 3F45EEDEBF44E874

View file

@ -14,13 +14,6 @@ FROM base AS back-builder
WORKDIR /builder
# Install Rust and Cargo using Alpine's package manager
RUN apk add --no-cache \
build-base \
libffi-dev \
rust \
cargo
# Copy required python dependencies
COPY ./src/backend /builder