Skip to content

Commit 5181aa8

Browse files
authored
Merge pull request #41 from pim-book/dockerfile
Dockerfile
2 parents ab9a6b3 + e684450 commit 5181aa8

File tree

1,058 files changed

+22
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,058 files changed

+22
-2
lines changed

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3.7-slim-buster
2+
3+
RUN apt-get update \
4+
&& apt-get install -y build-essential build-essential python3.7-dev python-igraph
5+
6+
COPY . /pimbook
7+
WORKDIR "/pimbook"
8+
9+
RUN pip3 install -r requirements.txt
10+
11+
ENTRYPOINT ["bash"]

README.md

+9
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pytest==3.8.0
3333
pytest-cov==2.5.0
3434
python-coveralls==2.9.1
3535
python-dateutil==2.7.3
36-
python-igraph==0.7.1.post6
36+
python-igraph==0.9.6
3737
pytz==2018.5
3838
PyYAML==5.4
3939
requests==2.20.0
@@ -42,5 +42,5 @@ simplegeneric==0.8.1
4242
six==1.11.0
4343
svgwrite==1.1.12
4444
traitlets==4.3.2
45-
urllib3==1.26.5
45+
urllib3==1.24.2
4646
wcwidth==0.1.7
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)