Skip to content

Commit 075e17b

Browse files
author
Devdutt Shenoi
authored
fix: unoptimized deps for debug build (#1140)
Signed-off-by: Devdutt Shenoi <[email protected]>
1 parent cb8b6c1 commit 075e17b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ WORKDIR /parseable
2525

2626
# Cache dependencies
2727
COPY Cargo.toml Cargo.lock build.rs .git ./
28-
RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build --release && rm -rf src
28+
RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build && rm -rf src
2929

3030
# Build the actual binary
3131
COPY src ./src

0 commit comments

Comments
 (0)