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>
20 lines
456 B
Docker
20 lines
456 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
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential cmake openssh-client openssh-server git
|
|
RUN apt-get install -y zsh
|
|
|
|
RUN mkdir -p /src
|
|
RUN pip install --upgrade meson ninja
|
|
RUN pip install --upgrade \
|
|
pytest~=6.2.5 \
|
|
pycco \
|
|
websocket-client~=0.47.0 \
|
|
planetmint-driver>=9.2.0 \
|
|
blns
|