Skip to content

Commit 8bbc5db

Browse files
committed
fix: debug docker
1 parent 35b1cf8 commit 8bbc5db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/rust/fcb_api/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ RUN apt-get update && apt-get install -y \
99

1010
WORKDIR /app
1111

12-
RUN ls -la
12+
RUN 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 src/rust/Cargo.toml ./
16-
COPY src/rust ./
15+
# COPY src/rust/Cargo.toml ./
16+
# COPY src/rust ./
17+
COPY . .
18+
RUN ls -la src/rust
19+
20+
WORKDIR /app/src/rust
1721

1822
# Build the fcb_api binary
1923
RUN cargo build --release -p fcb_api

0 commit comments

Comments
 (0)