diff options
| author | mjkwiatkowski <mati.rewa@gmail.com> | 2026-05-17 14:21:09 +0200 |
|---|---|---|
| committer | mjkwiatkowski <mati.rewa@gmail.com> | 2026-05-17 14:21:09 +0200 |
| commit | a5a140c6286e8b113ca8d371f88e3ed54e731cea (patch) | |
| tree | cd648c36df09d30c217166865a81a0c4e523932b /datasets/Talluri2021/Dockerfile | |
| parent | a4102d0252236e85b2813160b4b11e3a19a00d62 (diff) | |
feat: added lots of citations and slowly finishing the introduction
Diffstat (limited to 'datasets/Talluri2021/Dockerfile')
| -rw-r--r-- | datasets/Talluri2021/Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/datasets/Talluri2021/Dockerfile b/datasets/Talluri2021/Dockerfile new file mode 100644 index 0000000..f13c99a --- /dev/null +++ b/datasets/Talluri2021/Dockerfile @@ -0,0 +1,22 @@ +FROM python:3.8 + +RUN apt-get update && \ + apt-get install -y libjemalloc-dev libboost-dev \ + libboost-filesystem-dev \ + libboost-system-dev \ + libboost-regex-dev \ + python-dev \ + autoconf \ + flex \ + bison \ + cmake + +ADD ./ $HOME/jupyter/ + +WORKDIR $HOME/jupyter + +RUN pip install -r requirements.txt + +EXPOSE 8888 + +ENTRYPOINT ["jupyter","lab","--no-browser","--ip=0.0.0.0","--allow-root","--NotebookApp.token=''","--NotebookApp.password=''"]
\ No newline at end of file |
