mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-24 03:54:21 +01:00
17 lines
573 B
Docker
17 lines
573 B
Docker
FROM python:3.10-slim
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl python3-dev autoconf g++
|
|
RUN apt-get install -y libpq-dev
|
|
|
|
# Deps for building secp256k1-py
|
|
RUN apt-get install -y build-essential automake pkg-config libtool libffi-dev
|
|
|
|
RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.5
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry lock --no-update
|
|
# Install all dependencies including breez-sdk-spark (now installs 0.3.4 automatically)
|
|
RUN poetry install --no-root --all-extras
|