Skip to content

Commit

Permalink
Merge pull request #461 from hatoo/update-dockerfile
Browse files Browse the repository at this point in the history
Add cmake installation to Dockerfile
  • Loading branch information
hatoo authored Apr 14, 2024
2 parents b01eb11 + 82723bf commit 1ddd2e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ FROM docker.io/library/rust:${RUST_VERSION} AS build
WORKDIR /app
COPY . /app

RUN apt-get update && apt-get install -y \
cmake \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN cargo install --path .

# Target image
Expand Down

0 comments on commit 1ddd2e7

Please sign in to comment.