Skip to content

Commit

Permalink
fix: add libtorrent to docker image
Browse files Browse the repository at this point in the history
Release-As: 0.9.1
  • Loading branch information
dreulavelle committed Jul 27, 2024
1 parent 7eb9767 commit af88478
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ RUN apk add --no-cache \
musl-dev \
libffi-dev \
python3-dev \
libpq-dev
libpq-dev \
libtorrent

# Install Poetry
RUN pip install poetry==1.8.3
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def run_in_thread(self):
self.should_exit = True
sys.exit(0)

def signal_handler():
def signal_handler(signum, frame):
logger.log("PROGRAM","Exiting Gracefully.")
app.program.stop()
sys.exit(0)
Expand Down

0 comments on commit af88478

Please sign in to comment.