Files
nutshell/Dockerfile
Erik Brakke a3ded1cd94 Add secp256k1 deps to dockerfile (#235)
Co-authored-by: Erik Brakke <erik@datasembly.com>
2023-05-22 14:25:26 +02:00

16 lines
516 B
Docker

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
COPY . .
RUN poetry config virtualenvs.create false
RUN poetry install --no-dev --no-root
EXPOSE 3338
CMD ["poetry", "run", "mint", "--port", "3338", "--host", "0.0.0.0"]