We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229094a commit 330e54dCopy full SHA for 330e54d
.dockerignore
@@ -1,6 +1,7 @@
1
**
2
3
!src/
4
+!crates/
5
!Cargo.lock
6
!Cargo.toml
7
!build.rs
Dockerfile
@@ -13,6 +13,7 @@ RUN mkdir -p src \
13
14
# Add all sources and rebuild the actual sentry-cli
15
COPY src src/
16
+COPY crates crates/
17
RUN touch src/main.rs && cargo build --release --features managed
18
19
# Copy the compiled binary to a target-independent location so it can be picked up later
MANIFEST.in
@@ -1,2 +1,3 @@
include build.rs Cargo.toml Cargo.lock
recursive-include src *
+recursive-include crates *
0 commit comments