mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00

* adjusted to neweest transaction package * adjusted to new planetmint-cryptoconditions imports * added Changelog and increased version Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
19 lines
428 B
Docker
19 lines
428 B
Docker
FROM python:3.9
|
|
|
|
RUN apt-get update \
|
|
&& pip install -U pip \
|
|
&& apt-get autoremove \
|
|
&& apt-get clean
|
|
RUN apt-get install -y vim zsh build-essential cmake git
|
|
|
|
RUN mkdir -p /src
|
|
RUN /usr/local/bin/python -m pip install --upgrade pip
|
|
RUN pip install --upgrade meson ninja
|
|
RUN pip install --upgrade \
|
|
pycco \
|
|
websocket-client~=0.47.0 \
|
|
pytest~=3.0 \
|
|
planetmint-driver>=0.9.2 \
|
|
blns
|
|
RUN pip install planetmint-ipld>=0.0.3
|