Skip to content

Commit

Permalink
feat: build ockamd in release mode in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Manuel committed Nov 7, 2020
1 parent 3e7c841 commit 2498bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/docker/rust/Dockerfile.ockamd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RUN apt update && apt install -y pkg-config libssl-dev
COPY . .
WORKDIR implementations/rust
RUN cargo test
RUN cargo build --bin ockamd
RUN cargo build --bin ockamd --release

FROM ubuntu:20.04
COPY --from=builder implementations/rust/target/debug/ockamd /usr/local/bin/ockamd
Expand Down

0 comments on commit 2498bf5

Please sign in to comment.