Skip to content

Commit 6d7acea

Browse files
committed
ci: update rust version of dockerfile
1 parent 57e851c commit 6d7acea

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/rust/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.86-slim AS builder
2+
FROM rust:1.91-slim AS builder
33

44
# Install dependencies
55
RUN apt-get update && apt-get install -y \
@@ -14,10 +14,6 @@ WORKDIR /app
1414
COPY src/rust/Cargo.toml ./
1515
COPY src/rust ./
1616

17-
# Remove workspace members that aren't needed for the API and require
18-
# extra system dependencies (C++ compiler for fcb_cpp, Python headers for fcb_py)
19-
RUN sed -i 's/members = \[.*\]/members = ["cli", "fcb_core", "wasm", "fcb_api"]/' Cargo.toml
20-
2117
RUN cargo build --release -p fcb_api
2218

2319
# Runtime stage

0 commit comments

Comments
 (0)