Files
nutshell/Dockerfile
callebtc 0959314786 Docker: Add wallet daemon and docker-compose.yml (#321)
* add wallet dockerfile

* add wallet to docker compose

* add dockerfile

* remove expose
2023-09-25 18:09:08 +02:00

15 lines
436 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