Skip to content

Commit d453fe0

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

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
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

trader/config.example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"relayer_api": "http://localhost:8080",
2+
"relayer_api": "http://84.46.253.204:8080",
33
"wallet_address": "0x...",
44
"private_key": "$PRIVATE_KEY",
55
"telegram": {

0 commit comments

Comments
 (0)