Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM ubuntu:xenial

# work directory
ADD . /usr/ethshardingpoc
WORKDIR /usr/ethshardingpoc

# PREPARE FOR BUIDL
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:fkrull/deadsnakes #source of python 3.6, use at own risk
RUN apt-get update

# PYTHON
RUN apt-get install -y build-essential python3.6 python3.6-dev python3-pip python3.6-venv python3.6-tk
RUN apt-get install -y git

# MATPLOTLIB
RUN apt-get install -y libxml2 libxml2-dev libpng-dev freetype2-demos pkg-config

# PIP
RUN python3.6 -m pip install pip --upgrade
RUN python3.6 -m pip install -r requirements.txt
16 changes: 0 additions & 16 deletions Pipfile

This file was deleted.

Loading