Skip to content

Commit 7e2b861

Browse files
committed
feat: update Dockerfile to install additional build dependencies
1 parent 812826e commit 7e2b861

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ cache/
7272
# Trading Bot Specific
7373
config.json
7474
config.toml
75+
config.copy.json
7576

7677
trade_history_*.json
7778
backtest_results*.json

relayer/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
FROM rust:1.89.0 as builder
22
WORKDIR /app
3+
RUN apt-get update \
4+
&& apt-get install -y --no-install-recommends \
5+
clang \
6+
libclang-dev \
7+
llvm-dev \
8+
build-essential \
9+
pkg-config \
10+
cmake \
11+
libssl-dev \
12+
&& rm -rf /var/lib/apt/lists/*
313
COPY . .
414
RUN cargo build --release
515

0 commit comments

Comments
 (0)