Skip to content

Commit

Permalink
tweaked the install step
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Sep 4, 2023
1 parent 2a709e7 commit 22313db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ ARG CARGO_FEATURES=release-feature-set
ARG CARGO_PROFILE=release
ENV RUSTFLAGS="--cfg prometheus_metrics --cfg tokio_unstable"

# Install libdw
RUN apt-get update
RUN apt-get install -y libdw-dev
# Install libdw-dev
RUN apt-get -y update && \
apt-get install -y libdw-dev && \
rm -rf /var/lib/apt/lists/*


COPY --from=planner /nucliadb/recipe.json recipe.json

Expand Down

0 comments on commit 22313db

Please sign in to comment.