Skip to content

Commit

Permalink
Use a dockerfile to support binder
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Duberstein committed Jun 27, 2019
1 parent b3af7bd commit 804ca13
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
modules/
node_modules/
bindings/
dev-docs/
docs/
examples/
modules/
node_modules/
scripts/
showcases/
test/
website/
babel.config.js
CHANGELOG.md
docker-compose.yml
Dockerfile
lerna.json
LICENSE
ocular-dev-tools.config.js
package-lock.json
package.json
README.md
webpack.config.js
yarn.lock
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM python:3.7-slim
RUN pip install --no-cache notebook
ENV HOME=/tmp
COPY requirements.txt /tmp/
RUN pip install --requirement /tmp/requirements.txt
2 changes: 1 addition & 1 deletion bindings/python/pydeck/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
http://test.pypi.org/simple/pydeck/pydeck-0.1.dev1-py2.py3-none-any.whl
https://test-files.pythonhosted.org/packages/9a/37/f796f7559991e461d1295d89c0590da7721a5c4a42e8b86a876b57575273/pydeck-0.1.dev2-py2.py3-none-any.whl#sha256=dbc854f7ff8ecc10cebfac8f0bfe5eb7ba61d83edc8a6f47721487eb65919dd5
sklearn
pandas==0.24.2
geopandas==0.5.0

0 comments on commit 804ca13

Please sign in to comment.