We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35b1cf8 commit 8bbc5dbCopy full SHA for 8bbc5db
src/rust/fcb_api/Dockerfile
@@ -9,11 +9,15 @@ RUN apt-get update && apt-get install -y \
9
10
WORKDIR /app
11
12
-RUN ls -la
+RUN echo "=== Build context contents ===" && find . -type f -name "*.toml" -o -name "*.rs" | head -20
13
14
# Copy workspace files from src/rust directory
15
-COPY src/rust/Cargo.toml ./
16
-COPY src/rust ./
+# COPY src/rust/Cargo.toml ./
+# COPY src/rust ./
17
+COPY . .
18
+RUN ls -la src/rust
19
+
20
+WORKDIR /app/src/rust
21
22
# Build the fcb_api binary
23
RUN cargo build --release -p fcb_api
0 commit comments