mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-24 14:35:45 +00:00
18 lines
340 B
Docker
18 lines
340 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
|
|
|
|
RUN mkdir -p /src
|
|
RUN pip install --upgrade \
|
|
pycco \
|
|
websocket-client~=0.47.0 \
|
|
pytest~=3.0 \
|
|
planetmint-cryptoconditions>=0.9.7\
|
|
planetmint-driver>=0.9.2 \
|
|
blns
|
|
|