Add secp256k1 deps to dockerfile (#235)

Co-authored-by: Erik Brakke <erik@datasembly.com>
This commit is contained in:
Erik Brakke
2023-05-22 06:25:26 -06:00
committed by GitHub
parent 151fa1421a
commit a3ded1cd94

View File

@@ -2,6 +2,10 @@ FROM python:3.9-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 -
ENV PATH="/root/.local/bin:$PATH"
WORKDIR /app