Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM continuumio/miniconda3:latest AS builder

# Install system dependencies
RUN apt-get update && \
apt-get install -y sudo libusb-1.0 gcc g++ python3-dev && \
apt-get install -y sudo libusb-1.0 gcc g++ python3-dev libsecp256k1-dev && \
rm -rf /var/lib/apt/lists/*

WORKDIR /home/hummingbot
Expand Down Expand Up @@ -57,7 +57,7 @@ ENV INSTALLATION_TYPE=docker

# Install system dependencies
RUN apt-get update && \
apt-get install -y sudo libusb-1.0 && \
apt-get install -y sudo libusb-1.0 libsecp256k1-dev && \
rm -rf /var/lib/apt/lists/*

# Create mount points
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ version: "3.9"
services:
hummingbot:
container_name: hummingbot
image: hummingbot/hummingbot:latest
# build: Uncomment this and comment image if you want to build it locally
# context: .
# dockerfile: Dockerfile
#image: hummingbot/hummingbot:latest
build:
context: .
dockerfile: Dockerfile
volumes:
- ./conf:/home/hummingbot/conf
- ./conf/connectors:/home/hummingbot/conf/connectors
Expand Down