We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a050f0 commit 8cf7d9cCopy full SHA for 8cf7d9c
Dockerfile
@@ -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 ["python3", "-i"]
README.md
@@ -23,3 +23,12 @@ pytest
23
# with code coverage
24
pytest --cov-report html:cov_html --cov-report annotate:cov_annotate --cov
25
```
26
27
+## Docker
28
29
+To build and run the code in the repository with docker, run
30
31
+```
32
+docker build -t pimbook -f Dockerfile .
33
+docker run -it --name pimbook pimbook:latest
34
0 commit comments