File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6161 uses : docker/build-push-action@v5
6262 with :
6363 context : .
64- file : ./ src/rust/Dockerfile
64+ file : src/rust/Dockerfile
6565 push : true
6666 tags : ${{ steps.meta.outputs.tags }}
6767 labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 11# Build stage
2- FROM rust:1.75 -slim AS builder
2+ FROM rust:1.86 -slim AS builder
33
44# Install dependencies
55RUN apt-get update && apt-get install -y \
@@ -12,13 +12,13 @@ WORKDIR /app
1212RUN echo "=== Build context contents ===" && find . -type f -name "*.toml" -o -name "*.rs" | head -20
1313
1414# Copy workspace files from src/rust directory
15- COPY Cargo.toml ./
16- COPY . .
15+ COPY src/rust/ Cargo.toml src/rust/Cargo.lock ./
16+ COPY src/rust ./
1717
1818# COPY . .
1919RUN ls -la
2020
21- WORKDIR /app/src/rust
21+
2222
2323# Build the fcb_api binary
2424# RUN cargo build --release -p fcb_api
You can’t perform that action at this time.
0 commit comments