Skip to content

Commit 330e54d

Browse files
committed
Fix python build
1 parent 229094a commit 330e54d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**
22

33
!src/
4+
!crates/
45
!Cargo.lock
56
!Cargo.toml
67
!build.rs

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN mkdir -p src \
1313

1414
# Add all sources and rebuild the actual sentry-cli
1515
COPY src src/
16+
COPY crates crates/
1617
RUN touch src/main.rs && cargo build --release --features managed
1718

1819
# Copy the compiled binary to a target-independent location so it can be picked up later

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include build.rs Cargo.toml Cargo.lock
22
recursive-include src *
3+
recursive-include crates *

0 commit comments

Comments
 (0)